| Date: | Thu, 19 Oct 2000 03:31:59 -0400 |
| Reply-To: | Gerhard Hellriegel <ghellrieg@T-ONLINE.DE> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Gerhard Hellriegel <ghellrieg@T-ONLINE.DE> |
| Subject: | Re: DATETIME question |
|---|
Yes! Your datetime13. is too short for the string you want to compare:
9 data test;
10 dtm="01jan2033:10:11:12";
11 x=input(dtm,datetime18.);
12 run;
NOTE: The data set WORK.TEST has 1 observations and 2 variables.
NOTE: The DATA statement used 0.28 seconds.
With a longer format all is ok!
|