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.
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!
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.