Using SAS 9.3, to do what you want, you need to create a "grouped" data structure. Now, instead of having a separate column for each response for RN, MD, RT, etc, you need a column for response (compliance) with a group variable (say- type) which will have the values RN, MD, etc. Now, use one BARCHART statement: BARCHART x=date y=compliance / group=type groupdisplay=cluster; Since the SERIESPLOT is not grouped, that data will need to be in a separate column, with only one data value for each date value.. If you are using skins, change that to DATASKIN=PRESSED. Feel free to email me if you have questions.
... View more