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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 365 views
  • 2 likes
  • 3 in conversation