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

Hi all,

I am doing a simple Sum using the Group By statement and I got what I wanted -- the total members in each state and total spend in each state.

Now, I was thinking if it's possible to add another row that shows the overall national total (sum of all states).

Below is my simplified code.

proc sql;

    create table SUM_BY_STATE as

    SELECT

           STATE

           ,sum(MEMBER_COUNT) as TOT_MBR_COUNT       

           ,sum(MEMBER_SPEND) as TOT_MBR_SPEND

    FROM RECORD1

    GROUP BY STATE

    order by STATE;

quit;

1 ACCEPTED SOLUTION

Accepted Solutions
DBailey
Lapis Lazuli | Level 10

you could always just insert the total..

proc sql;

    create table SUM_BY_STATE as

    SELECT

           STATE

           ,sum(MEMBER_COUNT) as TOT_MBR_COUNT       

           ,sum(MEMBER_SPEND) as TOT_MBR_SPEND

    FROM RECORD1

    GROUP BY STATE

    order by STATE;

insert into SUM_BY_STATE (state, mbr_count, mbr_spend)

select

     'Grand Total' as State,

     sum(mbr_count),

     sum(mbr_spend)

from record1;

quit;

View solution in original post

2 REPLIES 2
DBailey
Lapis Lazuli | Level 10

you could always just insert the total..

proc sql;

    create table SUM_BY_STATE as

    SELECT

           STATE

           ,sum(MEMBER_COUNT) as TOT_MBR_COUNT       

           ,sum(MEMBER_SPEND) as TOT_MBR_SPEND

    FROM RECORD1

    GROUP BY STATE

    order by STATE;

insert into SUM_BY_STATE (state, mbr_count, mbr_spend)

select

     'Grand Total' as State,

     sum(mbr_count),

     sum(mbr_spend)

from record1;

quit;

skillman
SAS Employee

You can also union the total at the bottom of the SQL:

proc sql;

    create table SUM_BY_STATE as

    SELECT

           STATE

           ,sum(MEMBER_COUNT) as TOT_MBR_COUNT      

           ,sum(MEMBER_SPEND) as TOT_MBR_SPEND

    FROM RECORD1

    GROUP BY STATE

union

    SELECT

           'Grand Total' as State,

           ,sum(MEMBER_COUNT) as TOT_MBR_COUNT      

           ,sum(MEMBER_SPEND) as TOT_MBR_SPEND

    FROM RECORD1

quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 57459 views
  • 5 likes
  • 3 in conversation