Create ignorecase option output. ORDER=IGNORCASE prints a list of variables in
alphabetical order ignoring the case of the letters.
ods output Variables=var4(keep=Num Variable);
ods listing close;
proc contents order=ignorecase data=&mydata;
run;
ods listing;
title "order=ignorecase option";
proc print data=var4 noobs;
run;
Create VARNUM option output. The name of the ODS output object is different when
the VARNUM option is used. VARNUM prints a list of the variable names in the order
of their logical position in the data set. ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month, and much more.