- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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.