Dear all,
Today i got this problem, with very high number of subjects sas report taking too many pages, but the table had only three columns so i tried to put togeher two tables in a single page using columns=2 option in ods rtf/pdf. it really worked out but the thing is i ran proc mixed in the same program, results associated with proc mixed are also adjusting for same side by side tables. now i just want subject reports side by side and proc mixed tables as the way it was before. can anyone help me out with this problem.
Thanks in advance,
Satish.
I would try resetting the option between procedures. It may not work but many of the appearance options can be set for specfic procs.
Example would look like:
ods destination columns=2;
proc report ....
run;
ods destination columns= 1;
proc mixed ..
run;
ods destination columns=2;
proc report ... <for a different report
run.
until the ods destination close.
Thanks for your reply Mr. ballardw,
i tried using this, but it giving me more than one output documents(RTF file) and i desired to print all reports in a single document.
Thanks,
Satish.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.