BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
MelissaM
Obsidian | Level 7

I have two categorical data sets: one with 20 rows, and one with 44 rows.

I need to make one data set which has two columns of 20 x 44 or 880 rows.

I need to keep the data in character format, so don't have to reformat anything.

 

I'd be embarrassed to tell you how much I've researched this, but to no avail (I have learned a lot, though).

But could use your guidance.

 

I'm guessing it's an array with a do loop, but am open to SQL or anything.

 

Appreciated in advance.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

What you want is a "cartesian join", easily achieved with proc sql:

data one;
input column1 $;
datalines;
one_1
one_2
;

data two;
input column2 $;
datalines;
two_1
two_2
two_3
;

proc sql;
create table want as
  select one.column1, two.column2
  from one, two
;
quit;

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

What you want is a "cartesian join", easily achieved with proc sql:

data one;
input column1 $;
datalines;
one_1
one_2
;

data two;
input column2 $;
datalines;
two_1
two_2
two_3
;

proc sql;
create table want as
  select one.column1, two.column2
  from one, two
;
quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 802 views
  • 0 likes
  • 2 in conversation