Hello
I want to add a total row after each origin.(There are 3 origins : Asia,Europe ,USA so I need to add 3 total rows)
What is the way to do it please?
proc tabulate data=sashelp.cars out=want_a1(drop=_type_ _page_ _table_) format=comma21. MISSING;
class origin Type Cylinders ;
table origin='Factory Origin'*Type='Type of Car' all='TOTAL', (Cylinders='Number_Cylinders' )*(n=''*f=comma21.) all='TOTAL' / rts=10 misstext='0';
run;
Maxim 6: Google Is Your Friend.
A search for "sas subtotal proc tabulate" immediately leads to this communities post (first hit), which gives me this solution:
proc tabulate data=sashelp.cars out=want_a1(drop=_type_ _page_ _table_) format=comma21. MISSING;
class origin Type Cylinders ;
table (origin='Factory Origin' all="Origin Total")*(Type='Type of Car' all='TOTAL'), (Cylinders='Number_Cylinders' )*(n=''*f=comma21.) all='TOTAL' / rts=10 misstext='0';
run;
Maxim 6: Google Is Your Friend.
A search for "sas subtotal proc tabulate" immediately leads to this communities post (first hit), which gives me this solution:
proc tabulate data=sashelp.cars out=want_a1(drop=_type_ _page_ _table_) format=comma21. MISSING;
class origin Type Cylinders ;
table (origin='Factory Origin' all="Origin Total")*(Type='Type of Car' all='TOTAL'), (Cylinders='Number_Cylinders' )*(n=''*f=comma21.) all='TOTAL' / rts=10 misstext='0';
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.