Hi! I have a problem with titles in Excel output. I have a narrow (small) table and I would like to have title that is wider than the table. Here is example of my problem: %let title1="I would like to have this title in a one row..."; ods tagsets.excelxp file='C:\testing titles.xls'; ods tagsets.excelxp options(embedded_titles='yes' gridlines='yes' autofit_height='yes' sheet_name='Testing'); title j=left font='Arial' height=12pt &title1 ; proc print data=sashelp.class (keep=name); run; ods tagsets.excelxp close; In SAS output it's ok, but when I open it in Excel the title is only as wide as the table and therefore it will split on two rows. Is it possible to have this in one row with this font size (it would have to be wider that the table)? TIA, Miia
... View more