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

Hello everyone,

 

I was wondering how to first sort by one variable then, keeping that sorting fixed, sort by another variable. For example, first sorting by NET then sorting by AGE as below

HAVE
====

Up to 40 obs WORK.HAVE total obs=4

Obs    NAME   AGE  NET  REG  LOSS

 1     home   300  200   50     .
 2     home   100  300    .     5
 3     TDR     80  500    .     3
 4     TDR    100  200    5     .

WANT
====
Obs    NAME   AGE  NET  REG  LOSS

1 TDR 100 200 5 . 2 home 300 200 50 . 3 home 100 300 . 5 4 TDR 80 500 . 3
 

Thanks in advance,

Jack 

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

That is just a proc sort then, position in the by statement indicates precendance:

proc sort data=have out=want;
  by net age;
run;

Sorts the data by age within the sort of data net.

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

That is just a proc sort then, position in the by statement indicates precendance:

proc sort data=have out=want;
  by net age;
run;

Sorts the data by age within the sort of data net.

jackmelbourne
Fluorite | Level 6
Thank you 🙂
GPNaveen
Fluorite | Level 6

Hi,

 

If we need to sort any variable within another variable (nested sorting) ,we could get this done with the help of PROC SORT.
We can use the By variable and get the task done.

 

Example:

 

Data try;
Input NAME$ AGE NET REG LOSS;
Datalines;
home 300 200 50 .
home 100 300 . 5
TDR 80 500 . 3
TDR 100 200 5 .
;
run;


Proc sort data=try out=try2;by net age;
run;

 

Now the variable NET is sorted first within which the variable Age is sorted.

 

Thanks ,
GP

jackmelbourne
Fluorite | Level 6
Thank you :))

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 4 replies
  • 1630 views
  • 0 likes
  • 3 in conversation