|
Specify underlining and a blank line
following column headings in a report of Clinic.Diabetes. |
- Copy and paste the following program into the Program Editor window:
proc report data=clinic.diabetes nowd;
column id sex weight fastgluc postgluc;
where age>40;
define weight / format=comma6.2
spacing=4;
define sex / width=7 spacing=4 center
'Sex of/Patient';
define fastgluc / 'Fasting/Glucose';
define postgluc / width=12
'Postprandial/Glucose';
run;
- Add options to specify an underline for all column headings and a
blank line beneath all column headings.
- Submit the program and view the report.
Return here and select Next.
|
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA.
All rights reserved.
Terms of Use & Legal Information
| Privacy Statement