BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SanjayAhir
Obsidian | Level 7

Hi All,

I want two different title in same line. one is left align and one is right align for ODS RTF output.

Can any one help me to resolve this.

I have tried options(print_header) and also like

title j=left "Left align" j=right "Right align";

1 ACCEPTED SOLUTION

Accepted Solutions
RW9
Diamond | Level 26 RW9
Diamond | Level 26

So if you run the below code, the output does not not look like the attached output?

ods noresults;

ods rtf file="s:temp\rob\test.rtf" style=statistical;

title1 j=l "Left" j=r "Right";

proc report data=sashelp.cars nowd;

  column make;

run;

ods _all_ close;

View solution in original post

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

What you have should work -

title1 j=l "Left" j=r "Right";

SanjayAhir
Obsidian | Level 7

Thank you for you answer.

I have tried this one but it is showing correct result in HTML not in RTF.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

So if you run the below code, the output does not not look like the attached output?

ods noresults;

ods rtf file="s:temp\rob\test.rtf" style=statistical;

title1 j=l "Left" j=r "Right";

proc report data=sashelp.cars nowd;

  column make;

run;

ods _all_ close;

SanjayAhir
Obsidian | Level 7

It is working.

Thank you very much.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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