Hi all
I need to do a sum of across field in a PROC REPORT. My proc report looks like this:
PROC REPORT DATA = TEST;
COLUMN A B C,D;
DEFINE A/GROUP;
DEFINE B/GROUP;
DEFINE C/ACROSS;
DEFINE D/ANALYSIS SUM;
RUN;
This creates a report grouping column A, B and across column C. So if C has two possible values - VAL1, VAL2, then it appears like this:
A B VAL1 VAL2
On Two 80 30
I need a column total of VAL1 and VAL2 in a new field. Something like this
A B VAL1 VAL2 TOTAL
On Two 80 30 110
Thanks in advance.
Hi Deep Siv,
You can try something like this :
data tab1;
input c $ year sales;
cards;
a 2009 10
a 2010 10
a 2011 10
a 2012 10
b 2009 10
b 2010 10
b 2011 10
b 2012 10
;run;
proc report data=tab1 ;
columns c year, sales sales=salessum;
define c /group ;
define year/across order=data;
define sales/analysis sum ;
define salessum/sum 'Total Sales';
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.