Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a date and time field with the time field in regular time (AM/PM). I want to convert the combination into military time. The date field is Service Date and the time field is Service.Service Start Time. Any help would be appreciated. Thanks in advance.
@glcordell you can try :
TimeStamp(Timestamp#(RegularTime,'MM-DD-YYYY hh:mm:ss TT'),'MM-DD-YYYY hh:mm:ss') as MilitaryTime
for example :
Data:
load
*,TimeStamp(Timestamp#(RegularTime,'MM-DD-YYYY hh:mm:ss TT'),'MM-DD-YYYY hh:mm:ss') as MilitaryTime
inline [
RegularTime
09-03-20 9:07:28 AM
];
output:
@glcordell you can try :
TimeStamp(Timestamp#(RegularTime,'MM-DD-YYYY hh:mm:ss TT'),'MM-DD-YYYY hh:mm:ss') as MilitaryTime
for example :
Data:
load
*,TimeStamp(Timestamp#(RegularTime,'MM-DD-YYYY hh:mm:ss TT'),'MM-DD-YYYY hh:mm:ss') as MilitaryTime
inline [
RegularTime
09-03-20 9:07:28 AM
];
output:
Thanks so much!!
do you get it in this form "2023-07-12T10:55:16Z"?
With T as a sepperator or is this impossible?
Do this.
Timestamp(Timestamp#(DateField, 'YYYY-MM-DDThh:mm:ssZ'), 'YYYY-MM-DD hh:mm:ss')
No, I mean transform it into this form. "2023-07-12T10:55:16Z" should be the end result. How has the format to be written that the result is in the form of "2023-07-12T10:55:16Z"?
@human My bad, in that case perhaps this.
Date(Date#(RegularTime, 'MM-DD-YYYY hh:mm:ss TT'), 'YYYY-MM-DD') & 'T' & Time(Date#(RegularTime, 'MM-DD-YYYY hh:mm:ss TT'), 'hh:mm:ss') & 'Z' as FormattedDateTime