Specify a computed variable in a report of Clinic.Diabetes. |
Creating HTML output? Read this first. |
|
proc report data=clinic.diabetes nowd; column sex weight fastgluc postgluc; where age>40; define weight / format=comma6.2 spacing=4 width=7; define sex / order width=7 spacing=4 center 'Sex of/Patient'; define fastgluc / 'Fasting/Glucose'; define postgluc / 'Postprandial/Glucose' width=12; run; |
|
Copyright © 2002 SAS Institute Inc.,
Cary, NC, USA.
All rights reserved.