Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have data in date time and seconds format, how can I convert it as follows?
Your help is requested.
Source:
DateTime |
2024-01-01T22:24:18.802Z |
2024-01-01T23:38:38.767Z |
2024-01-04T13:38:48.677Z |
I want to Result:
DateTime | Date | HourTime |
2024-01-01T22:24:18.802Z | 2024-01-01 | 22:24 |
2024-01-01T23:38:38.767Z | 2024-01-01 | 23:38 |
2024-01-04T13:38:48.677Z | 2024-01-04 | 13:38 |
see it like this:
Date -> Date(Floor(DateTime))
HourTime -> Time(Frac(DateTime)) - standard
HourTime -> Time(Frac(DateTime),'hh:mm') - custom hh:mm
Regarts, Matheus
see it like this:
Date -> Date(Floor(DateTime))
HourTime -> Time(Frac(DateTime)) - standard
HourTime -> Time(Frac(DateTime),'hh:mm') - custom hh:mm
Regarts, Matheus