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 16:27:11 +0000
Reply-To:   toby dunn <tobydunn@HOTMAIL.COM>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   toby dunn <tobydunn@HOTMAIL.COM>
Subject:   Re: combining pages in ODS
Comments:   To: jhibbert@GMCF.ORG
In-Reply-To:   <1EC5F440867F2243A1A657780277BC0502480A09@gmcfexchange.gmcf.org>
Content-Type:   text/plain; format=flowed

ods html body='c:\temp\test1.html' style=sasweb;

Proc Print Data = Work2 NoObs ; Where Provider_id in ( '11 '53' ) ; Run ;

ods html close;

Toby Dunn

To sensible men, every day is a day of reckoning. ~John W. Gardner

The important thing is this: To be able at any moment to sacrifice that which we are for what we could become. ~Charles DuBois

Don't get your knickers in a knot. Nothing is solved and it just makes you walk funny. ~Kathryn Carpenter

From: Jeff Hibbert <jhibbert@GMCF.ORG> Reply-To: jhibbert@GMCF.ORG To: SAS-L@LISTSERV.UGA.EDU Subject: combining pages in ODS Date: Fri, 12 Jan 2007 11:17:43 -0500

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.

_________________________________________________________________ Fixing up the home? Live Search can help http://imagine-windowslive.com/search/kits/default.aspx?kit=improve&locale=en-US&source=hmemailtaglinenov06&FORM=WLMTAG


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