I need to compute the same stats grouped by several different variables. The code below produces exactly what I need for one variable but I'd like to add a groupvar2 with results appended at the bottom. I haven't been able to find anything, and I'm trying to avoid Proc Tabulate. Any ideas??? proc report data=data1 nowd; column groupvar1 PL,(n pct) Score_,median; define groupvar1 / group; define PL / across format=$plfmt.; define Score_ / analysis; run;
... View more