BookmarkSubscribeRSS Feed
Manish_Choubey
Calcite | Level 5
Id age salary
1 23 3000
2 34 5000
4 26 2000
4 26 2000
5 32 4000
5 32 5000

Output:
Id age salary
1 23 3000
2 34 5000
4 26 4000
5 32 9000

How can we achieve this output. Plz help
2 REPLIES 2
stat_sas
Ammonite | Level 13

data have;

input id age salary;

datalines;

1 23 3000
2 34 5000
4 26 2000
4 26 2000
5 32 4000
5 32 5000

;

 

proc sql;

select id,age,sum(salary) as salary

from have

group by id,age;

quit;

EH
Obsidian | Level 7 EH
Obsidian | Level 7

Or using my favorite proc:

 

proc means data=have nway noprint;
class ID;
id age;
var salary;
output out=want (drop=_:) sum=;
run;

 

The id statement copies the age variable to the output dataset (assuming that it is constant within the variable ID).

The nway option hides the total row (all IDs).

The drop= dataset option drops the automatic variables _FREQ_ and _TYPE_.

 

Hope this helps,

Eric

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 1258 views
  • 0 likes
  • 3 in conversation