| Date: | Fri, 11 Apr 1997 17:21:42 GMT |
| Reply-To: | abad <abad@INTERNETMCI.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU> |
| From: | abad <abad@INTERNETMCI.COM> |
| Organization: | Global Service Systems Corp. |
| Subject: | Re: formatting macro variables in a title |
|---|
Gerald,
If her only problem is making her formatted variable to appear on the
title, she should probably create a new macro variable "dynamically" before
her PROC PRINT like the sample code below.
--
Tony Abad
Southbury, CT USA
_________________START ______________________
data _null_;
fixr=right(put("&select",$RPOOL.));
call symput('newTITLE',fixr);
run;
proc print;
title1 "&newTITLE vs Other Risk Pool";
run;
________________ END _______________________
Zuckier, Gerald <Zuckier@CHIME.ORG> wrote in article
<c=US%a=_%p=CHA%l=NTSERVER2-970409152838Z-960@msexchange.chime.org>...
> >I'm forwarding this request from a friend:
> >
> >
> >As you can probably see - what I want to do is have the title say:
> >
> >For example:
> >
> > Bristol Hospital vs all other risk pools
> >
> >instead of
> > '102' vs all other risk pools
> >
> >
> >HELP!!!!!!!
> >
> >
> >
> >
> >
>
|