BookmarkSubscribeRSS Feed
thanikondharish
Fluorite | Level 6

proc sql ;

select sex,case when sex='F' then age+5 else age+10 end as new_age from sashelp.class group by new_age;

quit;

 

how to calculate new_age sum group wise with in a program

4 REPLIES 4
novinosrin
Tourmaline | Level 20

 

how to calculate new_age sum group wise with in a program

 

sum of what within new_age

 


@thanikondharish wrote:

proc sql ;

select sex,case when sex='F' then age+5 else age+10 end as new_age from sashelp.class group by new_age;

quit;

 

how to calculate new_age sum group wise with in a program


 

thanikondharish
Fluorite | Level 6
new_age group wise sum
PGStats
Opal | Level 21

Your aggregated and aggregating variable is the same? Anyway... :

 

proc sql;
select 
    sex,
    case when sex='F' then age+5 else age+10 end as new_age,
    sum(calculated new_age) as sumAge 
from sashelp.class 
group by sex, calculated new_age;
quit;
PG

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 4 replies
  • 1282 views
  • 0 likes
  • 4 in conversation