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.
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;
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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.