Date: Wed, 27 Apr 2005 22:06:41 -0400
Reply-To: diskin@alum.rpi.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Dennis Diskin <ddiskin@GMAIL.COM>
Subject: Re: Label a By Variable In Proc Report
In-Reply-To: <200504272123.j3RLNVBP005618@listserv.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1
Mike,
Maybe you are referring to the label in the line generated by the BY
statement? In this case, the Define will have no effect. Instead you
need a:
label vanname='Vendor Name';
HTH,
Dennis Diskin
On 4/27/05, Michael F. Murphy <Michael.F.Murphy@kp.org> wrote:
> I can't get Proc Report to provide a label with a BY statement.
>
> Here is part of the code:
> by venname;
> define venname / display 'Vendor Name';
>
> In the result, venname is displayed, instead of 'Vendor Name'.
>
> Thanks.
>
> Mike
>
|