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 ?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.