BookmarkSubscribeRSS Feed
Eric_Johnosn
Calcite | Level 5

Hello I have a dataset with the below.  I would like to sum the amounts by ID's, but when I try traditional proc sql it will sum the entire amount column and put it into the value for each id.  

ID's     amounts

1         1

1         2

1        3

1        4

2         1

2         2  

2        3

2         4

3        1 

3         2

3        3

3       4

3        5

2 REPLIES 2
novinosrin
Tourmaline | Level 20

proc sql;

create table want as

select id, sum(amount) as sum

from have

group by id;

quit;

PaigeMiller
Diamond | Level 26
proc summary data=have;
    class id;
    var amount;
    output out=sums sum=sum_amount;
run;
--
Paige Miller

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 627 views
  • 2 likes
  • 3 in conversation