BookmarkSubscribeRSS Feed
sdang
Quartz | Level 8

Hi all, I want to convert StartTime and EndTime which are character variable to datetime variable so I can do calculation.  Please see our they are structured in my data source.

Capture.PNG

For example, the first row, I want my calculation to say that customer  started at 11:00 AM and ended 11:00 AM.  You are welcome to offer me another option of getting my desire calculation without any conversion.

Thank you ahead.

2 REPLIES 2
BrunoMueller
SAS Super FREQ

You can convert these type of text strings using the ANYDTDTM informat. Unfortunately it will not read the milliseconds. In the code below two methods are shown, one using the ANYDTDTM informat, the other uses a combination of two informats for the date and time part and then combine the date and seconds together using the DHMS function.

data want;
  dateHave = "2015.03.03 11:19:41.440";

  dateWant = input(dateHave,
anydtdtm19.);

  dateWant2 = dhms(
    input(substr(dateHave,
1, 10), yymmdd10.)
    ,
0
    ,
0
    , input(substr(dateHave,
12), time16.)
  );

 
format dateWant: datetime22.3;
run;
sdang
Quartz | Level 8

Thank you, it was helpful.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 2 replies
  • 1826 views
  • 3 likes
  • 2 in conversation