Can anyone advise on the appropriate SAS informat to read in a datetime (dd/mm/yyyy hh:mm) ???
eg
data _null_;
informat from_dt datetime????.;
input from_dt ;
put from_dt=;
cards;
01/01/1960 00:00
;run;
|
feedback
|
|
I don't think that specific informat is built-in, but it is relatively easy to roll your own. Below is an example of a creating a custom datetime informat (this requires a cntlin data set) and a custom format (using the picture statement) that reads in your specific datetime and then formats it back out to look the same as the input. I simplified it by assuming the time part was always midnight (00:00), but it can be easily expanded if you need to keep track of the time parts as well (just change the 86400 number to 3600 to get every hour, and 60 for every minute). It helps to see what is going on if you open the work.infmt data set to see what it looks like.
This gave an output like this:
| ||||
|
feedback
|
|
The anydt* family of informats do work, usually.
| |||
|
feedback
|
|
SAS might not support the specific datetime format your data is in. You could either try to convert the incoming data to a frendlier format or you could parse the datetime using the substr, DHMS and MDY functions:
Or alternatively you could convert the datetime string into a datetimew.d format and input the formatted string:
The conversion can be compressed to a single but complex statement, so creating a macro for this might be a good decision. | ||||
|
feedback
|
|
This entry from the SAS knowledgebase includes code for parsing and formatting datetime. Looks like SAS has a great online help system. The third message in this exchange on Google groups may be helpful as well. It talks about inputting datetime, and provides code. Your question is so hard to decipher, and I know so little about SAS, that's about all I can offer. Hope it helps. | |||
|
feedback
|
|
Going by the list here, I don't think there is one. Conceivably you could create your own with | |||
|
feedback
|