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".
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.