BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
West26
Obsidian | Level 7

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.

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User
Post some data and output you want to see, so we can better understand your question.

View solution in original post

4 REPLIES 4
andreas_lds
Jade | Level 19

In the define statements of the variable: change "display" to "sum".

West26
Obsidian | Level 7
It didn't work that way, I've tired. I'll get back with some added data later on,
Ksharp
Super User
Post some data and output you want to see, so we can better understand your question.
West26
Obsidian | Level 7
Sure, will get back on that. Thanks for your time

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 881 views
  • 0 likes
  • 3 in conversation