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".
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.