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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 2038 views
  • 0 likes
  • 2 in conversation