title '7a. Formatted Order, Continuous Data by Nesting Product and Sales as Rows'; proc tabulate data=sashelp.shoes missing; class region product subsidiary; var stores sales inventory returns; * Sales are nested within product values as rows by region as columns; table (product)*sales = 'Sales' * (n='N'*f=8. mean='Mean'*f=5.1 std='Std'*f=5.1 min='Min'*f=3. max='Max'*f=3.) (all = 'Total') ,(region=" ")(all = 'Total'); run;