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
proc sql;
create table want as
select id, sum(amount) as sum
from have
group by id;
quit;
proc summary data=have;
class id;
var amount;
output out=sums sum=sum_amount;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.