i think this is a much needed function in sgplot. my work-around is to use proc freq to export the percentages and then use sgplot. like proc freq data=xxx noprint;table a*b/out=XXXX outpct;run; proc sgplot data=XXXX;vbar b /response=pct_row group=a groupdisplay=cluster;run;
... View more