We have recently upgraded to SAS93. I am trying to write 'Proc Print' output to an external text file without any luck. Output is shown in the Results Viewer. Example: Filename CELPH 'Z:\SASPGM\Z9\Z9Output\Z9KeyCPUIndicatorsHourlyUsage.txt'; Proc printto print=CELPH new; run; Title 'Z9 Hourly Interval Key Indicators - 2011'; Proc print split='*'; var LPARNAME STARTIME LPCTBY PCTLPBY LPMSUHR LPSHARC LPSHARE ; By LPARNAME; run; Proc printto; run; What do I need to change in order to write the Proc Print to an external text file please? Thanks Sarel Swanepoel
... View more