|
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.
>
|