Date: Mon, 29 Nov 2004 08:20:31 -0500
Reply-To: Chuck Enright <chuck_sas@CFEDATA.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Chuck Enright <chuck_sas@CFEDATA.COM>
Subject: Re: ERROR: Variable lease_begin_date has been defined as both
character and numeric.
In-Reply-To: <BF90F06B2321D7118012000802EDDC5E08D5FBE3@bslnt.india.birlasoft.com>
Content-Type: text/plain; charset=ISO-8859-1
Bhavani,
What attribute do you want Lease_Begin_Date to have when finished?
DATA TEST;
SET abcrowhist (IN=A)
bbcrowhist (IN=B RENAME=(Lease_Begin_Date=Lease_Begin_Date_X))
jpcROWHIST (IN=C)
fbROWHIST (IN=D);
IF B THEN NEW_Lease_Begin_Date = INPUT(Lease_Begin_Date, MMDDYY10.);
ELSE NEW_Lease_Begin_Date = Lease_Begin_Date;
RUN;
Quoting Bhavani Shankar <bhavani.shankar@INDIA.BIRLASOFT.COM>:
> Hi
> Please help me. iam getting the following error and i am unable to correct
> with Put/Input function.
>
> ERROR: Variable lease_begin_date has been defined as both character and
> numeric.
> The variable attribute in 4 different sets are as follows.
>
> abcrowhist Lease_Begin_Date Char 8
>
> bbcrowhist Lease_Begin_Date Num 8 296 MMDDYY10.
>
> jpcROWHIST Lease_Begin_Date Char 1
>
> fbROWHIST Lease_Begin_Date Char 1
>
> Thanks in advance.
> Shan
>
>
>
>
> Disclaimer: 'This email and any files transmitted with it are confidential
> and intended solely for the use of the individual or entity to whom they are
> addressed. If you have received this email in error please notify the system
> manager. Please note that any views or opinions presented in this email are
> solely those of the author and do not necessarily represent those of the
> company. Finally, the recipient should check this email and any attachments
> for the presence of viruses. The company accepts no liability for any damage
> caused by any virus transmitted by this email.'
>