s******r 发帖数: 1524 | 1 SAS is really wired.
I have one simple code like
test=input(test_char,5.);
test_char has value ,'0','15','30' and 'FC'.
While sas read 'FC', it created log like
NOTE: Format MMDYY was not found or could not be loaded.
It took me a while to find 'MMDYY' and got nothing. No idea |
l*********s 发帖数: 5409 | 2 Probably because FC cannot be translated into numeric value normally, so SAS
tried to cast it into date type but failed. |
p********a 发帖数: 5352 | 3 MMDYY? what is this in SAS? |
s******r 发帖数: 1524 | 4 No wonder I did not find anything.
I found so many bugs in SAS recently. Maybe that's the reason I still have a
job. :)
【在 p********a 的大作中提到】 : MMDYY? what is this in SAS?
|
s******r 发帖数: 1524 | 5 It could be. But where MMDYY comes from. Really wired.
SAS
【在 l*********s 的大作中提到】 : Probably because FC cannot be translated into numeric value normally, so SAS : tried to cast it into date type but failed.
|