BookmarkSubscribeRSS Feed
Siddhartha
Calcite | Level 5
I had merged the two datasets using the by variable and before merging I had sorted the datasets uisng proc sort:
Can anyone tell me the code so that observations should be in the previous order as in the base datasets,using the merge statement.
1 REPLY 1
1162
Calcite | Level 5
One easy solution is to record the original order in a separate variable before sorting and merging. Then, you can resort on this separate variable back to the original order.


data a;
set a;
order +1;
run;

proc sort data=a; by var1; run;
proc sort data=b; by var1; run;

data combined;
merge a b;
by var1;
run;

proc sort data=combined; by order; run;

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
  • 1 reply
  • 717 views
  • 0 likes
  • 2 in conversation