title1 '1b. Formatted Order, Categorical and Continuous Data as Rows'; title2 'Default of N and Sum'; proc tabulate data=sashelp.shoes missing; class region product subsidiary; keylabel n='Count' mean='Mean'; var stores sales inventory returns; * Both character and numeric variables in display row order; table product='Product' all='Total' sales='Sales' returns='Returns' , all; run;