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

Hi I have to import in datatime SAS this datetime:

 

2011-02-28-23.59.59.999999

2015-05-22-11.21.17.558222

2015-05-22-12.13.30.386022

I try with this code:

data prova;
	a='2011-02-28-23.59.59.999999';
	b= input(a,ANYDTDTM26.);
	c=put(b,datetime.);
run;


But I get the missing value...
I can't find the correct informat for this type of data....
Any of you, has some suggestion?

1 ACCEPTED SOLUTION

Accepted Solutions
Daniel-Santos
Obsidian | Level 7

I think anyddtm. will truncate the milliseconds part.

 

Try this to precisely input the datetime.

 

data _null_;

 

    a='2011-02-28-23.59.59.999999';

    b=inputn(substr(a,1,10),'yymmdd10.')*24*60*60+inputn(substr(a,12),'time15.');

 

    put b datetime25.6;

run;

 

This will split the datetime into two parts and input them separately with the correct informat.

 

Hope it helps.

 

Daniel Santos @ www.cgd.pt

View solution in original post

4 REPLIES 4
error_prone
Barite | Level 11

Using anydtdtm. instead of anydtdtm26. seems to solve the issue.

Daniel-Santos
Obsidian | Level 7

I think anyddtm. will truncate the milliseconds part.

 

Try this to precisely input the datetime.

 

data _null_;

 

    a='2011-02-28-23.59.59.999999';

    b=inputn(substr(a,1,10),'yymmdd10.')*24*60*60+inputn(substr(a,12),'time15.');

 

    put b datetime25.6;

run;

 

This will split the datetime into two parts and input them separately with the correct informat.

 

Hope it helps.

 

Daniel Santos @ www.cgd.pt

Kurt_Bremser
Super User

Convert the input data to a properly formatted ISO 8601 datetime value, and then use the proper informat:

data have;
input value_char $26.;
substr(value_char,11,1) = 'T';
substr(value_char,14,1) = ':';
substr(value_char,17,1) = ':';
value = input(value_char,e8601dt26.6);
format value datetime26.6;
cards;
2011-02-28-23.59.59.999999
2015-05-22-11.21.17.558222
2015-05-22-12.13.30.386022
;
run;

Instead of the 'T', you can also use a blank. But the 'T' conforms to the norm.

data_null__
Jade | Level 19

SAS has an informat for that.  YMDDTTM.

 

data date;
   input date:ymddttm.;
   line=_infile_;
   format date datetime32.6;
   cards;
2011-02-28-23.59.59.999999
2015-05-22-11.21.17.558222
2015-05-22-12.13.30.386022
;;;;;
   run;
proc print;
   run;

 Capture.PNG

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 4 replies
  • 3108 views
  • 5 likes
  • 5 in conversation