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;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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