Hello,
I am creating an rtf file using a stored process (without specifying any location on a drive). The default name of the file comes out to be do.doc which I want to change to something more meaningful. Is anyone aware of how to do it? I am using the following settings in the header of the code file:
%if ( &REPORTFORMAT=RTF ) %then %do;
%let _odsdest=RTF;
%end;
I also use this statement in the body of the code file:
ods rtf style=rtf bodytitle startpage=no nokeepn notoc_data nogfootnote ;
Thanks.
VD.