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";
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;
What you have should work -
title1 j=l "Left" j=r "Right";
Thank you for you answer.
I have tried this one but it is showing correct result in HTML not in RTF.
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;
It is working.
Thank you very much.
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!
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.