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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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