I am running some proc and using ods output FitStatistics = fs; etc to create some SAS datasets from the outputs. But since I am running it a large number of times, I want to suppress the printing to Results. What's is the SAS code for doing that?
A:
How about use the codes at below:
ods _all_ close; ods output FitStatistics = fs
Kevin Qin
2010-06-02 01:45:22
Nope doesn't work. Still prints to Results
xiaodai
2010-06-02 03:28:10
+2
A:
Hi
This question was asked and answered a while ago on runsubmit.com. It's like stackoverflow but just for SAS related q's.
http://www.runsubmit.com/questions/248/suppressing-results-output-with-proc-print-and-ods
Cheers Rob
Rob Penridge
2010-06-02 15:04:12