October 2009
Beginner
636 pages
13h 35m
English
Using multiple ODS statements, you can create output for multiple destinations in one run. All you have to do is call ODS HTML, ODS RTF, and ODS PDF in separate statements before you run the procedure. You can also create multiple HTML versions of your output by repeating the ODS HTML statement. However, if you simply use two ODS HTML statements, one after the other (but with different filenames), the second invocation cancels out the first invocation.
This example shows how to build two Web pages with a single run through your procedures. All you need to do is number the ODS destination statements so that SAS can keep track of each version. Here is the syntax:
ODS HTML(1) BODY='body1.html'; ODS HTML(2) ...
Read now
Unlock full access