Hi all.
When I submit [pre]
ODS RTF FILE = "c:\temp\good.doc" CONTENTS ;
PROC PRINT DATA = sashelp.class ;
RUN ;
ODS RTF CLOSE ;
[/pre]
I get a page break after the content table. That's fine with me.
Unfortunately, when I add a BODYTITLE option to my ODS RTF statement, the page break disappears (shazam !). Adding an extra ODS RTF STARTPAGE=NOW ; before the Print Procedure doesn't bring the page break back.
[pre]
ODS RTF FILE = "c:\temp\good.doc" CONTENTS BODYTITLE ;
ODS RTF STARTPAGE = NOW ;
PROC PRINT DATA = sashelp.class ;
RUN ;
ODS RTF CLOSE ;
[/pre]
Is there any circumvention (maybe inline formatting to insert page break ?) ?
Is it something that was intended to behave that way ? (If I can't avoid the problem, at least I want to put an explanation on it, if possible...)
Thanks in advance.
Olivier
PS : This time, Cynthia, I don't think that Proc Report, how wonderful it may be, will solve my problem.