Hi everyone.
Please I need help with proc contents;
I'm trying to view the content of a data set.
proc contents data=want;
run;
In the output, the heading says Alphabetic List of Variables and Attributes, however, the variables were not arranged alphabetically.
Thank you.
In the collating sequence of the ASCII code, capital letters appear before lowercase letters. That's why it's not a good idea to mix cases in variable names, unless you use it for specific reasons (i.e. I used it to separate variables coming in from the production DB (uppercase) vs. those created in the data warehouse during the ETL process (lowercase))
Please show us a screen capture. Use the "Insert Photos" icon to include your screen capture in your reply. Do NOT attach files.
Okay, thank you
In the collating sequence of the ASCII code, capital letters appear before lowercase letters. That's why it's not a good idea to mix cases in variable names, unless you use it for specific reasons (i.e. I used it to separate variables coming in from the production DB (uppercase) vs. those created in the data warehouse during the ETL process (lowercase))
You can use the option "order":
proc contents data=want order=ignorecase;
run;
This worked too; thank you sir.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.