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
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
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;
Provide example data in a data step with datalines.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.