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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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