BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ari
Quartz | Level 8 ari
Quartz | Level 8

I am trying to import a csv file with datetime variable in the form 

2011-02-02T15:22

 

But when the data is imported, only date remains like this

 

2011-02-02

 

Any help to import the datetime variable correctly?

 

Thanks,

 

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

Copy the data step from the log (proc import writes the data step it creates to the log) and adapt the informat for the column in question.

Then re-run the data step.

View solution in original post

6 REPLIES 6
Kurt_Bremser
Super User

Use the e8601dt informat, as in

data test;
string = "2011-02-02T15:22";
dtval = input(string,e8601dt19.);
format dtval datetime19.;
put dtval=;
run;

 You can use that informat directly in the input statement.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Post the import code (into a {i}) so we can see how you are importing it.

ari
Quartz | Level 8 ari
Quartz | Level 8
proc import datafile='test.csv' out=data dbms=csv replace;
getnames=yes;
datarow = 2;
run;
Kurt_Bremser
Super User

Copy the data step from the log (proc import writes the data step it creates to the log) and adapt the informat for the column in question.

Then re-run the data step.

ari
Quartz | Level 8 ari
Quartz | Level 8

@Kurt_Bremser

Thanks. it worked.

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Yes, as @Kurt_Bremser has stated, use a datastep import and set the columns yourself.  Proc import is a guessing procedure - i.e. it is guessing what your data is.  Never a good idea.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 3721 views
  • 2 likes
  • 3 in conversation