options formchar = ‘|_---|+|---+=|-/\<>*’ orientation = landscape; title ‘1.2c Categorical Data by Categorical Data as a Percent Table – Overall 100% by Table’; proc report data=sashelp.class nowindows nocenter missing headline headskip nofs list split='*'; column product region n pctn; define product/group "Product"; define region/group "Region"; define n/format =8. "N"; define pctn / "%" format = percent8.1; rbreak after/ ol summarize; run;