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

I am a beginner to SAS. I am following the tutorials. I am confused on sorting and grouping.

 

proc print data= orion.sales;
	by country;
run;

This code works well, and group the data set. When I run following code, it displays error. 

 

 

proc sort data=orion.sales
	out=work.sort_sales;
	by salary ;
run;

proc print data=work.sort_sales;
	by country;
Run;
ERROR: Data set WORK.SORT_SALES is not sorted in ascending sequence. The current BY group has Country = US and the next BY group has Country = AU.
 
I do not understand the reasoning behind having the same variable which we use to group by, in sorting statement. 
 
Thanks in advance. 
1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

I do not understand the reasoning behind having the same variable which we use to group by, in sorting statement. 

SAS processess data line by line, so when you use a BY statement it expects the BY variables to be in order in the data. To ensure this is the case, you would first need to sort the data to have that specified order. So the BY variable list needs to be the same in your SORT and then your BY statements in further processes.

 

If you need a more detailed explanation, I suggest reading through the chapter on BY group processing in the documentation.

 

http://documentation.sas.com/?docsetId=lrcon&docsetTarget=p0tq11jtmrhsd4n1co4p5tu1fbsi.htm&docsetVer...

 

 

View solution in original post

3 REPLIES 3
Reeza
Super User

I do not understand the reasoning behind having the same variable which we use to group by, in sorting statement. 

SAS processess data line by line, so when you use a BY statement it expects the BY variables to be in order in the data. To ensure this is the case, you would first need to sort the data to have that specified order. So the BY variable list needs to be the same in your SORT and then your BY statements in further processes.

 

If you need a more detailed explanation, I suggest reading through the chapter on BY group processing in the documentation.

 

http://documentation.sas.com/?docsetId=lrcon&docsetTarget=p0tq11jtmrhsd4n1co4p5tu1fbsi.htm&docsetVer...

 

 

Myurathan
Quartz | Level 8

Thank you so much for your quick reply. I will read the materials. 

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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
  • 3 replies
  • 5513 views
  • 2 likes
  • 3 in conversation