Tried lots of stuff, but can't figure out why this is center justified, and not left justified?
ods pdf file = "C:\temp\test.pdf" ;
ods layout gridded columns=1 rows=1;
ods region;
ODS escapechar="^";
ods pdf text ="^S={just = left} Schools";
ods layout end;
ods pdf close;
thanks,
Dave
Figured it out - need to remove the "gridded" piece from the ods layout statement (along with the columns= and rows=)
That's weird the standard behaviour is for it to appear left by default.
Even in the examples that's how it works:
In this case they use PROC TEMPLATE to customize it, not sure that's an option for you.
thanks for the suggestion - I've got 10+ layouts, with multiple regions, so didn't want to mess with proc template.
Dave
Figured it out - need to remove the "gridded" piece from the ods layout statement (along with the columns= and rows=)
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.