Date: Fri, 23 Jul 2004 10:37:27 -0500
Reply-To: "Dunn, Toby" <Toby.Dunn@TEA.STATE.TX.US>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "Dunn, Toby" <Toby.Dunn@TEA.STATE.TX.US>
Subject: Re: ODS
Content-Type: text/plain; charset="us-ascii"
Jules,
From the online docs:
html-file-specification
opens the HTML destination and specifies the HTML file or files to write
to. These files remain open until you either
close the HTML destination with ODS HTML CLOSE
specify another file to write to instead.
You can specify up to seven HTML files to write to. The specifications
for these files have the following form:
file-type=file-specification<(file-specification-suboption(s))>
Interaction: html-file-specification is required if the HTML destination
is closed.
HTH
Toby Dunn
-----Original Message-----
From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of
Bosch, Jules [PRDUS Non J&J]
Sent: Friday, July 23, 2004 8:51 AM
To: SAS-L@LISTSERV.UGA.EDU
Subject: ODS
Dears,
The following code produces only one HTML file and the output is the
DEFAULT
style. If I reverse the two ODS HTML statements, again, only one HTML
file
is produced and its style is MINIMAL. Can anyone explain why this is
happening?
Tia,
Jules Bosch
ods listing close;
ods html file='Co_Morb1.html' style=minimal;
ods html file='Co_Morb2.html' style=default;
proc report...
run;
ods _all_ close;
ods listing;
/* End */