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 (January 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 12 Jan 2007 11:28:31 -0500
Reply-To:   Ya Huang <ya.huang@AMYLIN.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   Ya Huang <ya.huang@AMYLIN.COM>
Subject:   Re: combining pages in ODS
Comments:   To: Jeff Hibbert <jhibbert@GMCF.ORG>

How about one proc print with a where statement like this:

where Provider_id in ('53','11');run;

On Fri, 12 Jan 2007 11:17:43 -0500, Jeff Hibbert <jhibbert@GMCF.ORG> wrote:

>I've been using the following code, which produces two separate pages >within the html file. Does anyone know how to suppress the pagination >so I can get both proc prints on the same page? > > > >ods html body='c:\temp\test1.html' style=sasweb; > >proc print data=work2 noobs; > >where Provider_id='53';run; > >proc print data=work2 noobs; > >where Provider_id='11';run; > >ods html close; > > > >Many thanks to anyone who knows. > >Jeff > > > > > >Jeff Hibbert, Ph.D. > >Georgia Medical Care Foundation > >1455 Lincoln Pkwy, Suite 800 > >Atlanta, GA 30346 > >678-527-3649 > >Confidentiality Notice: This e-mail and any attached files transmitted may contain confidential and privileged information and are intended solely for the use of the individual or entity to which they are addressed. If you are not the intended recipient or the person responsible for delivering the e- mail to the intended recipient, be advised that you have received this e- mail and any attached files in error and that any use, dissemination, forwarding, printing or copying of this e-mail and /or any attached files is strictly prohibited. If you have received this e-mail in error, please immediately notify the sender and destroy the original message and any attached files. >


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