SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Enhancing Reports
Specifying Titles


Question: Which of these title lines will appear on the PROC MEANS report?

RADIX COMPANY
BIG VCR SALES TOP MODELS
  title1 'RADIX COMPANY';
  title2 'BIG VCR SALES';
  proc print data=vcr.sales;
     where unitsold>=30;
  run;
  title2 'BEST SALES';
  title3 'TOP MODELS';
  proc means max data=vcr.sales;
     where unitsold>=30;
     by type;
  run;

BEST SALES
TOP MODELS
RADIX COMPANY
BEST SALES
TOP MODELS


  back||next

 

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

Terms of Use & Legal Information | Privacy Statement