Date: Fri, 9 Jul 2004 10:19:15 +0200
Reply-To: Andre Wielki <wielki@INED.FR>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Andre Wielki <wielki@INED.FR>
Subject: Re: ODS Html - Using Different styles
In-Reply-To: <4232178f.0407081637.60738d2f@posting.google.com>
Content-Type: text/plain; charset="us-ascii"; format=flowed
Vijay
The notion of page did not exist in html
but it is possible to produce one html file with two different style
like in the following sample
ods noresults;
ods listing close;
filename htmfi "c:\temp\enrich.htm";
ods html body=htmfi(no_bottom_matter url=none) style=minimal;
proc print data=sashelp.class;run;
ods html close;
filename htmfi "c:\temp\enrich.htm" mod;
ods html body=htmfi(no_top_matter url=none) style=brick;
proc print data=sashelp.class;run;
ods html close;
ods results;
ods listing;;
HTH
Andre
At 02:37 09/07/2004, you wrote:
>Iam tring to create a html document with 2 pages using ODS HTML and
>standard style. I use the following piece of code
>
>DATA DETAILS;
>INFILE DETAILS ;
> INPUT @01 DATAX $CHAR80.;
>
>ODS HTML FILE=HTMLFILE RS=NONE STYLE=SASDOCPRINTER;
> OPTIONS NOCENTER NONUMBER NODATE ;
> PROC REPORT DATA=DETAILS NOHEADER;
> TITLE 'FIRST PAGE';
>
> PROC PRINT DATA=OUTFILE NOOBS ;
> TITLE 'SECOND PAGE';
>
>My requirement is that I need the output from the proc report in a non
>table layout and the output from the proc print with the gridlines. I
>found standard styles to achieve reports without gridlines but not
>different styles in different pages. It is either with or without the
>gridlines on both the pages.
>
>Iam real pathetic when using ODS and any help will be appreciated..
>
>thanks in Advance
>V