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;

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