options formchar = ‘|_---|+|---+=|-/\<>*’ orientation = landscape; title ‘1.2a Categorical Data as a Percent Table’; proc report data=sashelp.class nowindows nocenter missing headline headskip nofs list split='*'; column sex N pctn; define sex / group width=3; define n / width=5 ; define pctn / '%' format=percent7.1 ; run ;