Chapter Contents

Previous

Next
The PRINT Procedure

Example 2: Customizing Text in Column Headers


Procedure features:
PROC PRINT statement options:
N
OBS=
SPLIT=
Other features:
LABEL statement
Data set: EXPREV

This example




Program


options nodate pageno=1 linesize=70 pagesize=60;

 Note about code
proc print data=exprev split='*' n obs='Observation*Number*===========';





 Note about code
   var month state expenses;

 Note about code
   label month='Month**====='
         state='State**====='
         expenses='Expenses**========';





 Note about code
   format expenses comma10.;
   title 'Monthly Expenses for Offices in Each State';
run;


Output

[HTML Output]  [Listing Output]


Chapter Contents

Previous

Next

Top of Page

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