how to include multiple rtf files in one rtf using sas ?
Input (?????) or output?
Once SAS has created an output RTF (or pretty much any other ODS destination) it is up to other tools to combine them, if that is your question.
In SAS you have two ways to create such combined files: Place all of the output generated inside one ODS destination statement:
Dummy example:
ods rtf file="<path>somefile.rtf" <other ods options>; Proc whatever; run; Proc otherproc; run; Proc yetanother; run; ods rtf close;
Another option is create all of the output in one session and then use Proc Document to select and combine the output objects and send to a single ODS destination.
i have 4 rtf file (already generated), i wanted to combine these 4 rtf in one rtf or pdf.
do you have any sample code for this ?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.