Hello, I want the date in the title to be bold. It works using ^S{} but when I open the Excel file there is a missing space between "by" and the date. I tried different things but I can't make it work. Any ideas? Thanks! ods excel file="C:\test.xlsx" options(embedded_titles="Yes"); TITLE1 J=L font='Helvetica' height=14pt "Please submit a completed and update your data, by ^S={font_weight=bold} &sysdate." ; ods escapechar="^"; proc print data=sashelp.bmt;run; ods excel close;
... View more