Cynthia, I have found that the ODS RTF statments necessary to do this work "as advertised", but the same can NOT be said for the comparable statements for the ODS TAGSETS.RTF destination: in a Tech Support Track that I submitted (December 2010) regarding the headery and footery section data "command" in the ODS TAGSETS.RTF it was finally determined that there was a problem with that tagset (in Version 9.2), in that the resulting RTF file had the correct Section Data string in it to set the header and footer margin ... followed immediately by a re-setting of the headery and footery to equal the top and bottom margin. The final reply to that support track was that the support person was going to discuss the problem with development and "... expect ... to modify the tagset to change this behavior" ... and it appears to have NOT yet been fixed in Version 9.3. FYI---Here's the snippet of the "offending" tagset code (from the 9.3 TAGSETS.RTF) --- wherein you can see that the section data is put in the RTF output file, which would include the headery footery values one might have issued in the SAS ODS statement (e.g., ods tagsets.RTF options(SECT='\headery720\footery576') --- then the headery and footery is re-set afterwards to the top/bottom margins. put $sect_data; put NL; put "\headery" TOPMARGIN "\footery" BOTTOMMARGIN;
... View more