BookmarkSubscribeRSS Feed
satish123
Fluorite | Level 6

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.

2 REPLIES 2
ballardw
Super User

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.

satish123
Fluorite | Level 6

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.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 2047 views
  • 0 likes
  • 2 in conversation