BookmarkSubscribeRSS Feed
monsterpie
Obsidian | Level 7

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?

 

 

 

2 REPLIES 2
ballardw
Super User

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.

 

Reeza
Super User
Depends, please show an example. I would suggest looking at CALL SORTC() most likely.

SAS Innovate 2025: Save the Date

 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!

Mastering the WHERE Clause in PROC SQL

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.

Discussion stats
  • 2 replies
  • 483 views
  • 2 likes
  • 3 in conversation