BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Ronein
Meteorite | Level 14

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;
1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

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;

 

 

View solution in original post

1 REPLY 1
Kurt_Bremser
Super User

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;

 

 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 245 views
  • 0 likes
  • 2 in conversation