LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (April 2011, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 12 Apr 2011 12:17:11 -0400
Reply-To:     Suzanne McCoy <Suzanne.McCoy@CATALINAMARKETING.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Suzanne McCoy <Suzanne.McCoy@CATALINAMARKETING.COM>
Subject:      Re: ODS HTML and PRINT procedure with a BY statement
Comments: To: "Viel, Kevin" <kviel@SJHA.ORG>
In-Reply-To:  <279E0CB25CBDEF4DB4A50E89328780E2074C93EADE@CHEXCMS08.one.ads.che.org>
Content-Type: text/plain; charset="us-ascii"

Using pdf instead of html gives you a lot more control over pagination and allows you to have column headers on every page. If you leave the default pdf options alone, you will get a table of contents to use for clicking through to different pages easily. It's not tabs but might do the trick without having to do a whole bunch of customizations.

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Viel, Kevin Sent: Tuesday, April 12, 2011 12:00 PM To: SAS-L@LISTSERV.UGA.EDU Subject: ODS HTML and PRINT procedure with a BY statement

I have close to 50 repetitive "pages" that I am printing to an HTML destination using ODS and the PRINT procedure with a BY statement.

I do not want them line up on top of each other, but would rather have each one as a tab or tab-like page. The point is I would like to click or otherwise shift to the next page. The pages represent a 384-well laboratory plate that I color coded. Inspecting the pattern of the colors may reveal information (QC).

I am RTFM very soon, but I thought I might post this to SAS-L in the meantime.

My code so far is:

ODS HTML File = "C:\LIMS_20110405.HTML" ;

Proc Print Data = Seq_Plates ( Where =( Seq_Plate = "0037" )) NoObs ; By Folder Seq_Plate ; Run ;

ODS HTML Close ;

I assume I can do more with the ODS HTML statement.

I would appreciate any tips or insights.

Thank you,

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.


Back to: Top of message | Previous page | Main SAS-L page