Features: |
COLUMN statement
|
proc report nowd data=sashelp.class style(report)={width=50%};
col name age sex;
define age / style(column)=[cellwidth=1in];
define sex / style(column)=[width=10%];
title "Using the WIDTH= and CELLWIDTH= Styles with PROC REPORT"; run;