| Date: | Thu, 17 Apr 2003 10:46:15 -0700 |
| Reply-To: | Brett Plummer <plummer@HSMGROUP.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Brett Plummer <plummer@HSMGROUP.COM> |
| Subject: | Printing variable labels in the title? |
|---|
Doing multiple proc tabulates. Would like to put the variable label in the
title for each...
something like:
proc tabulate data=brett ;
class &columnvars &var1;
table (all &var2),(all &columnvars)*(n*f=4.0 colpctn='%'*f=4.1)
/rtspace=16 box=' ' row=float ;
title variablelabel ; /* This is the part that I need help with */
run;
Thanks,
Brett
|