Double Spacing LISTING Output

If you are generating SAS LISTING output, one way to control the layout is to double space it. To do so, specify the DOUBLE option in the PROC PRINT statement. For example,
proc print data=clinic.stress double; 
   var resthr maxhr rechr; 
   where tolerance='I'; 
run;
Double spacing does not apply to HTML output.
To generate SAS LISTING output, you must select ToolsOptionsPreferences. Select the Results tab. Select the Create listing option.
Double-Spaced LISTING Output
Double-Spaced LISTING Output

Get SAS Certification Prep Guide: Base Programming for SAS 9, Third Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.