I would like to print some text before I show the result of a proc report. ODS is excel.tagset. Currently I do it with the title statement. But the title statement is limited to 10 titles (title1 title2,...). However I need more than 10 textlines at the output. How can I do this? I have SAS9.2.
EDIT: Here is a code example:
ods tagsets.excelxp STYLE=sasdocprinter file=_WEBOUT
options(embedded_titles='yes' embedded_footnotes='yes');
title1 'title text row1';
title2 'title text row2';
...
title10 "title text ¯o_var.";
footnote1 'footnote text';
proc report data=lib.a;
...
run;