Date: Wed, 16 Jul 2008 13:22:04 -0500
Reply-To: "data _null_," <datanull@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: "data _null_," <datanull@GMAIL.COM>
Subject: Re: what is wrong with this code
In-Reply-To: <6716d5d0807161118v4517e4afr73f841df1169d8de@mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
ERROR 48-59: The informat MMDDYYYY was not found or could not be loaded.
Try using the correct informat name MMDDYY.
On 7/16/08, Jeff <zhujp98@gmail.com> wrote:
> data t;
>
> d=*'11/24/2007'*;
>
> m=input(d,mmddyyyy10.);
> run;
>
> Why I can not get m?
> THX
>
|