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 (May 2006, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 23 May 2006 18:30:36 +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: ods/html, is it a way to make each BY group page size bigger?
Comments: To: Ya.Huang@AMYLIN.COM
In-Reply-To:  <C0C8366F844D9F448DF6A5E40A1C2B9E61A5D2@A-EXCH2K3-VS2.amylin.com>
Content-Type: text/plain; format=flowed

Ya ,

I was hoping SAS would fill in the extra blank lines with line breaks. Hmmm... I guess you could always preprocess your data set and add a var to be printed out with '<br>'. But it seems kind of kludgy.

Toby Dunn

From: "Huang, Ya" <Ya.Huang@AMYLIN.COM> Reply-To: "Huang, Ya" <Ya.Huang@AMYLIN.COM> To: SAS-L@LISTSERV.UGA.EDU Subject: Re: ods/html, is it a way to make each BY group page size bigger? Date: Tue, 23 May 2006 11:19:23 -0700

Toby,

Unfortunately, it would be OK if you print it. But on the screen, they are still in one page. This is the difference between html and other format.

Ya

-----Original Message----- From: toby dunn [mailto:tobydunn@hotmail.com] Sent: Tuesday, May 23, 2006 11:16 AM To: Huang, Ya; SAS-L@LISTSERV.UGA.EDU Subject: RE: ods/html, is it a way to make each BY group page size bigger?

Ya ,

Add name to yoru proc report but set t as a grouping var with noprint. Then use Rbreak and the page option to foce it to go to the next page.

Toby Dunn

From: Ya Huang <ya.huang@AMYLIN.COM> Reply-To: Ya Huang <ya.huang@AMYLIN.COM> To: SAS-L@LISTSERV.UGA.EDU Subject: ods/html, is it a way to make each BY group page size bigger? Date: Tue, 23 May 2006 13:52:36 -0400

ods html file="c:\temp\junk.html" style=sasweb;

options nobyline;

proc report data=sashelp.class nowd; column age sex weight height; define age / display; by name; title "#byval(name)"; run;

ods html close;

What I want is for each BY group, increase the page size so that the page only show one BY group. The reason is that I have another code that generates in file link, eventually will to link to each of the pages. I don't want to confuse people when they click and go to, say 'Alice', but the same page also shows 'Alfred' and 'Barbara'.

Thanks

Ya


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