BookmarkSubscribeRSS Feed
mnflower
Calcite | Level 5

 

 

 

How do I set the number of columns in the Variable column so my variable names are not split into 2 lines like they are in example 2.

 

Example 1          -----Variables Ordered by Position-----
  # Variable                Type Len Format    Label
---------------------------------------------------------
174 prepare_food_other      Num    3           majority

 

Example 2          -----Variables Ordered by Position-----
  # Variable          Type Len Format    Label
---------------------------------------------------------
174 prepare_food_     Num    8 YN22FMT.  majority
    other


3 REPLIES 3
ballardw
Super User

Are you talking about the default table produced by Proc Contents? If you really want to control the appearance of output the easiest way would be to send the output to a data set and then use Proc Print with all the controls available there.

 

Proc Contents data=sashelp.class out=work.classcontents;

run;

 

proc print data=work.classcontents;

run;

 

Otherwise the approach would be to modify the template that Proc Contents uses to display results.

ChrisNZ
Tourmaline | Level 20

Works fine for me.

What code do you use?

What ODS destination?

Capture.PNG

Reeza
Super User
Your output looks like listing, so try changing the line size.

options linesize=max;

http://support.sas.com/documentation/cdl/en/hostwin/69955/HTML/default/viewer.htm#n1e2w0wxgq9vn3n1h1...

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 3 replies
  • 1123 views
  • 0 likes
  • 4 in conversation