BookmarkSubscribeRSS Feed
BStats
Calcite | Level 5

Hi. 

 

I am using absolute layout with an ods destination of pdf. I have set my layout equal to the following.

 

option nomprint nosymbolgen nomlogic nodate nonumber center missing=0
orientation=portrait
papersize = letter
topmargin = 0.001in
bottommargin = 0.001in
leftmargin = 0.001in
rightmargin = 0.001in;
ods _all_ close;
ods listing close;
ods escapechar = '^';
ods pdf file ="C:\xxx.pdf" startpage = no style=Stack_Table_Style;

title;

ods layout absolute width=7.75in height=10.5in;

 

However when I try and set a new region with a width of 3.75in I get the following message.

WARNING: WIDTH exceeds LAYOUT WIDTH for PDF destination. This option will be ignored.

 

The code I have is as follows. 

 

ods region width = 7.75in
height = 0.60in;
goptions cback=CxB0C4DE;
proc gslide;
run;
quit;

ods region x=0.55in
y=0.05in;
ods text = "^{style[preimage='D:\T\Logos\_Logo_115x42.png']}";

ods region x=6.0in
y=0.15in;
ods text = "^{style[preimage='D:\TSSS\Logos\Picture1.jpg']}";


ods region x=0.02in y=1.8in
width=3.75in height=1.0in;
goptions reset=all;
proc gslide cframe=black wframe=1;
run;
quit;

 

 

What am I doing wrong?

 

2 REPLIES 2
Ksharp
Super User
option papersize = (40in 20in) ;

Make Paper Size bigger.

wwwz
Calcite | Level 5

papersize options great!.

 

solved!

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 5839 views
  • 3 likes
  • 3 in conversation