SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Creating List Reports
Double Spacing Output


To double space your SAS listing output, you can specify the DOUBLE option in the PROC PRINT statement.
     proc print data=clinic.stress double;
        var resthr maxhr rechr;
        where tolerance='I';
     run;
NOTE: Double spacing does not apply to HTML output.

Obs RestHR MaxHR RecHR
2 68 171 133
3 78 177 139
8 70 167 122
11 65 181 141
14 74 152 113
15 75 158 108
20 78 189 138



back||next


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

Terms of Use & Legal Information | Privacy Statement