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

INPUT DATA

VAR1                VAR2

 ABC                     30

 BBC                     40

 CNE                    20

 BRE                    10

 

 

 

OUTPUT DATA

INPUT DATA

VAR1                VAR2

 ABC                     30

 BBC                     40

 CNE                     20

 BRE                     10

VAR2TOTAL       100

 

Only the VAR2 result has to be displayed with PROC PRINT, ALONG WITH TEXT  'VAR2TOTAL'

 

Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
LaurieF
Barite | Level 11

There may be a a way with the new things that have been added to proc print, but I'm not up with all of them.

 

But you can do it with proc report. Try this:

proc report data=source nowd;
cols var1 var2;
define var1 / group;
define var2 / sum;
rbreak after / summarize;
compute after;
   var1 = 'VAR2TOTAL';
   endcomp;
run;

View solution in original post

2 REPLIES 2
LaurieF
Barite | Level 11

There may be a a way with the new things that have been added to proc print, but I'm not up with all of them.

 

But you can do it with proc report. Try this:

proc report data=source nowd;
cols var1 var2;
define var1 / group;
define var2 / sum;
rbreak after / summarize;
compute after;
   var1 = 'VAR2TOTAL';
   endcomp;
run;
West26
Obsidian | Level 7
Thank you LaurieF

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 2 replies
  • 1199 views
  • 1 like
  • 2 in conversation