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
Diamond | Level 26
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

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1978 views
  • 0 likes
  • 2 in conversation