Previous Page | Next Page

The PRINTTO Procedure

Example 4: Routing to a Printer


Procedure features:

PRINTTO statement:

Option:

PRINT= option


This example uses PROC PRINTTO to route procedure output directly to a printer.


Program

 Note about code
options nodate pageno=1 linesize=80 pagesize=60;
 Note about code
filename your_fileref printer 'printer-name';
 Note about code
proc printto print=your_fileref;
run;

Previous Page | Next Page | Top of Page