BookmarkSubscribeRSS Feed
deleted_user
Not applicable
First, thanks to anyone and everyone for their help....

Here is the issue:

I created a 50 page PDF report and decided to add some break pages between sections of analysis. The break pages contained no output... just ODS PDF TEXT... including a graphic that i left justified on the first page.

Prior to adding the break pages, all of my graphs and tables were centered in the middle of the page.

Now, after adding my title page, contents page, and chapter title pages, all of my PROC REPORT tables are LEFT justified.

How do I force these tables to be centered? My PROC GPLOT output is still in the center of the page so I cant understand why my PROC REPORT tables wouldn't be.

I'm using ODS LAYOUT and REGION statements...

THANKS!

Nick
1 REPLY 1
Cynthia_sas
SAS Super FREQ
Hi,Nick:
You might try explicitly centering PROC REPORT by using the CENTER option on the PROC REPORT statement itself:
[pre]
ods pdf file='c:\temp\testctr.pdf';

proc report data=sashelp.class nowd center;
run;

ods pdf close;
[/pre]

But what I don't know is what happens to the output once you add ODS LAYOUT and ODS REGION into the mix.

If the above suggestion doesn't work, then your best bet for help may be to contact Tech Support.

cynthia

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
  • 1 reply
  • 1522 views
  • 0 likes
  • 2 in conversation