Hi I'm using SAS 9.4 and I create many different rtf document with a macro in SAS using ODS features. But, after creating a rtf document on my hard drive, SAS automatically opened it. It quickly run out my memory. How can I switch off the automatic opening. For example: DATA CLASS; INPUT NAME $ 1-8 SEX $ 10 AGE 12-13 HEIGHT 15-16 WEIGHT 18-22; CARDS; JOHN M 12 59 99.5 JAMES M 12 57 83.0 ALFRED M 14 69 112.5 ALICE F 13 56 84.0 ; ods rtf file= "D:\TestSAS\OUT\_test.rtf" ; PROC MEANS; VAR AGE HEIGHT WEIGHT; PROC PLOT; PLOT WEIGHT*HEIGHT; quit ; ods rtf close ; will automatically open the _test.rtf document in Microsoft word Thank you for your help, all the best, Damien.
... View more