Hi,
could anyone please tell me if is it possible to group over one variable and then use another group in same table.
I would like to obtain results like that:
GroupVar1 - first level grouping variable
Var2 - sum of var2 in datasets grouped by GroupVar1
GroupVar3 - second level grouping variable
Var4, Var5 - sum of variables grouped by GroupVar1 and GroupVar3
Thank you.
This can be done with Proc REPORT, you do need to add a dummy content column for the first summarized var.
The code below shows an example, please note that there are some additional statements, that where added for verification of the result.
data cars;
set sashelp.cars;
hpg = 1;
run;
proc report data=cars spanrows;
column origin hpg horsepower=hpsum type invoice cylinders _dummy;
define origin / group style={textalign=center VERTICALALIGN=MIDDLE };
define hpg / group style={textalign=center VERTICALALIGN=MIDDLE };
define hpsum / analysis sum
/* noprint*/
;
define type / group;
define cylinders / analysis;
define invoice / analysis;
define _dummy / computed
/* noprint*/
;
compute before origin;
tempHpg = hpsum;
endcomp;
/* assign value to grouping var */
compute _dummy;
/* just for verification */
_dummy = tempHpg;
hpg = tempHpg;
endcomp;
/* just for validation */
break after origin / summarize;
run;
This can be done with Proc REPORT, you do need to add a dummy content column for the first summarized var.
The code below shows an example, please note that there are some additional statements, that where added for verification of the result.
data cars;
set sashelp.cars;
hpg = 1;
run;
proc report data=cars spanrows;
column origin hpg horsepower=hpsum type invoice cylinders _dummy;
define origin / group style={textalign=center VERTICALALIGN=MIDDLE };
define hpg / group style={textalign=center VERTICALALIGN=MIDDLE };
define hpsum / analysis sum
/* noprint*/
;
define type / group;
define cylinders / analysis;
define invoice / analysis;
define _dummy / computed
/* noprint*/
;
compute before origin;
tempHpg = hpsum;
endcomp;
/* assign value to grouping var */
compute _dummy;
/* just for verification */
_dummy = tempHpg;
hpg = tempHpg;
endcomp;
/* just for validation */
break after origin / summarize;
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!
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.