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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2033 views
  • 0 likes
  • 4 in conversation