proc tabulate data=sashelp.class; class Sex Age; where Height lt 60; table age all, Sex*(n*f=3. pctn="% of Table"*f=11.2) / rts=10; table age all, Sex*(n*f=3. pctn="% of Column"*f=11.2) / rts=10; table age all, Sex*(n*f=3. pctn="% of Row"*f=11.2) / rts=10; title1 "Tabulate Percentages for Students less than 5 feet tall"; run;