Hi,
working with proc report I am trying to get something like share MSRP sum across orgin and grouped by make and type in total MSRP sum grouped by make and type.
What i already have is
proc report data=sashelp.cars;
column make type MSRP origin, (MSRP share) ;
define make / group;
define type / group;
define MSRP / analysis sum;
define origin / across order=data;
define MSRP/ analysis sum;
define share / computed ;
compute after type;
tot = MSRP.sum;
endcomp;
compute after origin;
share = MSRP.sum / tot;
endcomp;
run;
It`s not working.
I would be grateful if anyone could help me solve this problem.
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.