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

I would like to sort a dataset, by the first column.

 

proc sort data=have;
by Col#1;
run;

 

Suppose I don't have the actual name of the Col#1 variable.

 

(Actually, I do, of course, but it varies among datasets.  And I'm seeking a generic approach.)

 

Can this be done?

 

Thanks!

 

Nicholas Kormanik

 

1 ACCEPTED SOLUTION

Accepted Solutions
PGStats
Opal | Level 21

Use SQL, as @Reeza suggested, or sort by everything (it will sort on the first variable first)

 

proc sql; 
create table cars as select * from sashelp.cars 
order by 1; 
quit;

/* Or */

proc sort data=sashelp.cars out=cars; by _all_; run;
PG

View solution in original post

4 REPLIES 4
Reeza
Super User

Not via PROC SORT but PROC SQL allows it. 

stat_sas
Ammonite | Level 13

Hi,

 

A couple of steps before proc sort may produce the desired output.

 

proc contents data=sashelp.cars order=varnum out=vars(keep=name varnum) ;
run;

proc sql;
select name into :sort_var from vars
where varnum=1;
quit;

proc sort data=cars;
by &sort_var;
run;

 

 

PGStats
Opal | Level 21

Use SQL, as @Reeza suggested, or sort by everything (it will sort on the first variable first)

 

proc sql; 
create table cars as select * from sashelp.cars 
order by 1; 
quit;

/* Or */

proc sort data=sashelp.cars out=cars; by _all_; run;
PG
NKormanik
Barite | Level 11

Thank you all for your help.

 

Since these datasets only contain two columns, it is easiest to sort by everything.  Straightforward and easy.  Wonderful.  Glad it can be done this way.

 

 

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 3871 views
  • 2 likes
  • 4 in conversation