And, to add onto Robert & Dan's postings, if you are using ODS destinations that support style - -even if you are NOT using SAS/GRAPH or GTL, you can have an impact on your title statement for RTF, PDF and HTML, by doing this: title1 color=hotpink font='Arial Narrow' bold h=14pt "This is my title"; and the ODS destinations that support style will use your title specifications. cynthia ods rtf file='c:\temp\hotpink.rtf'; ods pdf file='c:\temp\hotpink.pdf'; ods html file='c:\temp\hotpink.html'; title1 color=hotpink font='Arial Narrow' bold h=14pt "This is my title"; proc print data=sashelp.class(obs=2); run; ods _all_ close; title;
... View more