Hello all,
I have a dataset with 5 variables and I am trying to sort my observations alphabetically across all 5 variables. Is this at all possible in SAS?
Try
Proc Sort data=yourdatasetname;
by firstvar secondvar thirdvar fourthvar fifthvar;
run;
If that doesn't get the result you want then be prepared to share some data and what you expect the sorted result to look like.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Save the date!
SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.
Find more tutorials on the SAS Users YouTube channel.