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