I want to get rtf output. The first page has orientation=landscape, and the second page has orientation=portrait;
The below is my code. Why it does not work?
options orientation=landscape obs=5;
ods rtf file="C:\XXXXX\Desktop\111.rtf";
proc print data=sashelp.class;
run;
options orientation=portrait;
proc print data=sashelp.retail; run;
ods rtf close;
Another question is if I only use orientation=portrait, which option can put these two proc output in one page, not like above the outputs are on different pages? Thanks.
What do you mean by it does not work?
Are both landscape ? Are both portrait ? Is there a syntax error?
Next time post your log.
Meanwhile try next code (I haven't tested it):
options orientation=landscape obs=5;
ods rtf file="C:\XXXXX\Desktop\111.rtf";
proc print data=sashelp.class;
run;
ODS options orientation=portrait;
proc print data=sashelp.retail; run;
ods rtf close;
What do you mean by it does not work?
Are both landscape ? Are both portrait ? Is there a syntax error?
Next time post your log.
Meanwhile try next code (I haven't tested it):
options orientation=landscape obs=5;
ods rtf file="C:\XXXXX\Desktop\111.rtf";
proc print data=sashelp.class;
run;
ODS options orientation=portrait;
proc print data=sashelp.retail; run;
ods rtf close;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.