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.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.