BookmarkSubscribeRSS Feed
Jackie_Stanbank
Calcite | Level 5
i am writing a proc report into ods and want my titles and footnotes to be on the left hand side.

what syntax can i use?
3 REPLIES 3
Tim_SAS
Barite | Level 11
Check out the JUSTIFY= option on the TITLE and FOOTNOTE statements.
ballardw
Super User
If you want all of the output to align on the left margin you can also use
OPTION NOCENTER:
Cynthia_sas
SAS Super FREQ
And, to build on Tim's suggestion, you can apply justification to multiple strings in the same title or footnote statement like this:
[pre]
title j=l 'Left String' j=c 'Center String' j=r 'Right String';
footnote j=l "Created on: &sysdate" j=r "Draft Version";
[/pre]

Most of the major ODS destinations (RTF, PDF and HTML) will respect the multiple justifications.

cynthia

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3 replies
  • 1640 views
  • 0 likes
  • 4 in conversation