In the interest of completeness, PROC REPORT also has the NOHEADER option that will suppress ALL the column headers in a report. You would use a blank for the header in a DEFINE statement if you wanted to suppress only 1 variable's (or more than 1) column header.
cynthia
proc report data=sashelp.class nowd noheader;
run;
versus
proc report data=sashelp.class nowd;
column name age sex height weight;
define name / display ' ';
run;
Figured it out already. Thanks!
just need to add a define column statement.
In the interest of completeness, PROC REPORT also has the NOHEADER option that will suppress ALL the column headers in a report. You would use a blank for the header in a DEFINE statement if you wanted to suppress only 1 variable's (or more than 1) column header.
cynthia
proc report data=sashelp.class nowd noheader;
run;
versus
proc report data=sashelp.class nowd;
column name age sex height weight;
define name / display ' ';
run;