Hello, In the output panel, I want the values of the variable 'Comp' displayed for each cell in the panel. But I want the cells to appear in order of the values of another variable 'Seq'. The dataset is ordered by Seq. I have used the following code but the cells I get are ordered by Comp. Please could you give any suggestions on how this could be implemented? PROC SGPANEL DATA=all2 NOCYCLEATTRS NOAUTOLEGEND ; PANELBY Comp / ROWS = 2 COLUMNS = 3 NOVARNAME ONEPANEL UNISCALE=ALL ; SCATTER X=Location_F Y=AdjLocation_H; SERIES X=MinAxis Y=MaxAxis; RUN; Thanks. VD (ps: the HTML editor here did not allow me to paste the code in color directly from the SAS editor).
... View more