Date: Mon, 31 Oct 2011 13:41:21 -0700
Reply-To: Fareeza Khurshed <fkhurshed@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Fareeza Khurshed <fkhurshed@GMAIL.COM>
Subject: Re: ODS HTML: CONTENTS with BY STATEMENT
In-Reply-To: <279E0CB25CBDEF4DB4A50E89328780E2078EEAE4EC@CHEXCMS08.one.ads.che.org>
Content-Type: text/plain; charset=ISO-8859-1
There appears to be a bylabel='no' option in ods html tagsets but not sure
what you're using exactly.
See paper 005-2010 from the SAS Global Forum.
http://support.sas.com/resources/papers/proceedings10/005-2010.pdf
HTH,
Fareeza
On Mon, Oct 31, 2011 at 8:54 AM, Viel, Kevin <kviel@sjha.org> wrote:
> I am slowly learning how to control some of the HTML output of ODS.
>
> Using the following code:
>
>
> ODS HTML Body = "&DS._body.htm"
> Contents = "&DS._contents.htm"
> Frame = "&DS._frame.htm"
> Path = "C:\Listings\SJHA\PSQM\ "
> NewFile = Proc
> ;
>
> ODS Listing Close ;
> ODS NoResults ;
>
> ODS ProcLabel = "%SysFunc( Upcase( &DS. ))" ;
>
> Title "#Byval(Description)" ;
>
> Proc Print Data = &DS._Vars NoObs Label Contents = "" ;
> By Description NotSorted ;
>
> Var Department / style = [ cellwidth = 1.5 in ] ;
>
> %Do PC_I = 1 %To &Periods. ;
> Var Period_&PC_I. / style = [ cellwidth = 1.75 in ] ;
> %End ;
>
> Run ;
>
> ODS HTML Close ;
> ODS Listing ;
> ODS Results ;
>
>
> how might I eliminate the "Audit Item=", which is the label for the BY
> variable Description, in the CONTENTS frame? My "brute force and
> awkwardness" approach is to edit the HTML file.
>
> Thanks,
>
> Kevin
>
>
> Kevin Viel, PhD
> Senior Research Statistician
> Patient Safety & Quality
> International College of Robotic Surgery
> Saint Joseph's Translational Research Institute
>
> Saint Joseph's Hospital
> 5671 Peachtree Dunwoody Road, NE, Suite 330
> Atlanta, GA 30342
>
> (678) 843-6076: Direct Phone
> (678) 843-6153: Facsimile
> (404) 558-1364: Mobile
> kviel@sjha.org
> Confidentiality Notice:
> This e-mail, including any attachments is the
> property of Catholic Health East and is intended
> for the sole use of the intended recipient(s).
> It may contain information that is privileged and
> confidential. Any unauthorized review, use,
> disclosure, or distribution is prohibited. If you are
> not the intended recipient, please delete this message, and
> reply to the sender regarding the error in a separate email.
>
|