- 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;
run;
- Submit the program and view the heading for the column
Sex .
- Recall the program.
- For the column
Sex , specify a width that is large
enough so that the column heading appears on one line.
- Re-submit the program and view the report.
Return here and select Next.
|