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

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
  • 4 replies
  • 1328 views
  • 0 likes
  • 4 in conversation