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