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;
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!
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.