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

 

I have the following proc summary.  How do I make a grand total at the end of the rows?


proc summary data=inv3 nway;
class dt rep supe cur_pd;
output out=inventory_counts (drop=_type_ rename=(_freq_= TL_INVENTORY));
run;

1 ACCEPTED SOLUTION

Accepted Solutions
ertweety
Obsidian | Level 7

figured it out.  Just did a data step after the summary where it sums the 4 columns

View solution in original post

3 REPLIES 3
Shmuel
Garnet | Level 18

change from:

       proc summary data=inv3 nway;

 

to:

     proc means data=inv3  types (0  16);

 

where 0 means the grand total

and 16 = 2**4 - as you have 4 class variables.

Reeza
Super User

Probably easier to do this in PROC TABULATE?

 

You can get grand totals and a more formatted table. 

ertweety
Obsidian | Level 7

figured it out.  Just did a data step after the summary where it sums the 4 columns

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 3 replies
  • 5055 views
  • 0 likes
  • 3 in conversation