BookmarkSubscribeRSS Feed
Ronein
Meteorite | Level 14

Hello

Why a summary row is not created here?

Data tbl;
input ID  y;
cards;
1 10
2 20
3 30
4 40
5 50
;
run;

proc report data=tbl nowd;
  column ID y ;
  define ID / display;
  define y / display;
  rbreak after / summarize;
run;
1 REPLY 1
PeterClemmensen
Tourmaline | Level 20

Because you define all the variables as display variables. PROC REPORT creates a summary row for analysis variables only. If you define y as an analysis variable like below, a summary row is created

proc report data=tbl nowd;
  column ID y ;
  define ID / display;
  define y / analysis;
  rbreak after / summarize;
run;

 

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
  • 1 reply
  • 620 views
  • 0 likes
  • 2 in conversation