I am using Base SAS (SAS Release 9.04.01M6P110718). We were recently upgraded to this version. I noticed that "categoryorder = respdesc", that was used to sort the categories in final graph, is not working in this version. Is there a work around? Here is the complete code PROC SGPANEL DATA=input_data; FORMAT change mm3fmt. ind_grp tierfmt. group groupfmt.; panelby group/ novarname columns=3 headerattrs=( family=arial size=10 weight=bold); styleattrs datacolors=(grey grey grey); hbar ind_grp/ response=change stat=sum dataskin=pressed barwidth=0.8 categoryorder=respdesc datalabel datalabelattrs=(size=10 weight=bold color = black) ; title "YoY Change"; rowaxis display=(nolabel) valueattrs=(size=9); colaxis display=(noticks novalues) label = "ABC not included" labelattrs=(color=black); run; Thanks, Erima
... View more