Hi, I´m using ODS RTF to print a Report, but I can´t figure out the best way to write a text without having to deal with the tables that comes with any TEXT commands. The only one I found that do not come within a table is "\pard" and "\par", but instead, comes with a table line AFTER the text. Here is the code: ods RTF file="test.rtf" ; proc odstext; p "REPORT 1"; run; ods RTF text="{\line}"; ods RTF text ="REPORT 2"; ods RTF text="{\line}"; ods RTF text="{\pard REPORT 3 \par}"; ods RTF close; Here is the Output: OBS: Turn on "SHOW GRIDLINES" in Microsof Word to see the table properly. Does anyone know a way to write texts without tables around with ODS RTF?
... View more