Date: Tue, 8 Nov 2005 08:04:14 -0800
Reply-To: maarten.laurs@ASTRAZENECA.COM
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: maarten.laurs@ASTRAZENECA.COM
Organization: http://groups.google.com
Subject: Re: Rename Variable
In-Reply-To: <1131462939.867058.39960@g44g2000cwa.googlegroups.com>
Content-Type: text/plain; charset="iso-8859-1"
That is correct. In the sas explorer you are, by default, presented
with the label that was assigned to a particular column. You'll have to
assign a different lable to the variable using a proc datasets for
instance.
proc datasets data=yourDataset;
label yourVariable='newName';
run;
Kind regards, Maarten
|