Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppressing automatic print on sas output

Status
Not open for further replies.

dherna

Technical User
May 1, 2002
6
0
0
US
Hi,
How do I suppress "The MEANS procedure" title from my lst output.
 
proc means noprint;

You could also use proc summary. By default, it produces no printed output. There may be some minor differences between the two procedures, but I believe they are generally interchangeable.
 
Sorry, I didn't read your post with sufficient care. I don't know if you can suppress "The MEANS Procedure" within proc means. I looked in the online documentation and didn't see anything under this proc or under system options. But if it's really a problem you could use proc summary, identify your analysis variables in the var statement, specify an output data set, and then print the output data set. Example:

proc summary data=test;
var a b c;
output out=testo;
run;

title; /* Suppress printing of 'The SAS System' */
proc print data=testo;
run;

If you're at Version 7 or higher, you might want to look at the Output Delivery System for more customization features for your output.
 
Thank you so much! Proc print help me get the desired output.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top