SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating Tabular Reports
Describing the Table


Question: Why is the following PROC TABULATE step incorrect?
proc tabulate data=report.diabetes;
   class type sex; 
   var totalclaim; 
   table type maritalstatus,totalclaim;
run; 
A variable is specified incorrectly.
The wrong statistic is calculated on a variable.
A variable in the TABLE statement is not listed in either the CLASS or VAR statement.




back||next


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

Terms of Use & Legal Information | Privacy Statement