Hi....I am trying to suppress a column that is blank when I run this code. The blank column appears next to the the column labelled "Programs" in the output. Any suggestion on how to suppress this blank column. Thanks
proc tabulate data=ListFinal1000; var COUNT_of_StudentUID; class 'Academic Year'n / style=[background=lightgreen ] order=unformatted missing; class "Education Status"n / style=[background=lightgreen ] order=unformatted missing; class Programs / style=[background=lightgreen ] order=unformatted missing; classlev 'Academic Year'n / style=[background=lightgreen]; classlev Programs / style=[background=lightgreen cellwidth=10.0cm]; classlev "Education Status"n / style=[background=lightgreen cellwidth=3.0cm]; table "Education Status"n=' ' * Programs=' ' * pctsum<Programs>=''*f=8.2, 'Academic Year'n * COUNT_of_StudentUID='' / box=[label='Percentage of Applications for Each Program and Academic Year' style=[backgroundcolor=lightgreen cellwidth=10.0cm]]; ; run;
Hi Cynthia,.....Thanks for your help. the suggestion of including ROW=FLOAT worked.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.