Hello, I was using the following codes to download my results as an RTF file from SAS online studio, but now when I use it, the file doesn't download. So I need a help to download my result in RTF or word file.
ods rtf on ; ods rtf file="myfilelocation\filename.rtf "style=sasweb startpage=no bodytitle;
title1'title1 '; proc print data=data1;run;
title2'title2'; proc print data=data2;run;
ods startpage=yes;
ods rtf close;