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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.