SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating Tabular Reports
Additional Features


You can condense multiple pages into a single page.
     table type,fee,sum / condense;

condensed pages


You can specify how percentages are calculated. In the table below, the percentages are calculated within each column.
     table type,fee*sex*pctsum<type>;

inter-column percentages


You can create formats to change headings for class variable values.
     proc format;
        value $actfmt 'LOW'='(1) Low'
                      'MOD'='(2) Moderate'
                      'HIGH'='(3) High';

formatted values



back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement