Hello,
Need help with summarizing columns with PROC REPORT
PROC REPORT DATA=WANT nowd;
column Serial Prog Type Height Weight Rate;
define Serial / order;
define Prog / group;
define Type / noprint;
define Height / display;
define Weight / display;
define Rate / noprint;
compute Rate;
if Rate= 'End' then
call define (_row_,"style","style={background=yellow}");
endcomp;
run;
I need to summarize Height and Weight variables and display the number under Height and Weight Columns.
Thanks.
In the define statements of the variable: change "display" to "sum".
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.