Hi,
I need to have a listing of subjects and their treatments by site. I did proc freq by site and got the tables that I need in the results window, but I need them to be outputted in indvidual rtf files so each rtf contains info specific for that site.
Any suggestions on how to go about this would be greatly appreciated!
Thanks!!
Sounds like you are generating clinical tables? If so check with your company for standards, macros and such like. You can output certain objects that freq creates - you can see what objects are created by:
ods trace=on;
proc freq...
ods trace=on;
In the log you will see the objects. You can now save these by:
ods output <object>=<dataset>;
proc freq...
Then you can use that dataset as you want, i.e. proc report and such like. You will want to add titles/footnotes, apply a template, specify filetype etc.
Hi
Have a look at the NEWFILE= option of the ODS RTF statement. This will help you to achieve what you want.
If you need more control on the naming of the RTF files have a look at this blog post http://blogs.sas.com/content/sasdummy/2012/03/20/sas-program-by-processing/ by @ChrisHemedinger This programming pattern can be used over and over.
Bruno
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.