Forum Discussion
bouyazbekj
7 years agoHelper I
Convert date from YYYYMMDDHHMM to HH:MM
Hello, I have a date in form of text that I'd like to turn into hours and minutes only. (HH:MM) Example 201904151015 to 10:15 Any idea how to do this?
- 7 years ago
bouyazbekj if it is datetime field then you can use format
MyTime = FORMAT( Table[Your Date Time Column], "HH:MM" )
parry2k
7 years agoSuper User
bouyazbekj if it is datetime field then you can use format
MyTime = FORMAT( Table[Your Date Time Column], "HH:MM" )
bouyazbekj
7 years agoHelper I
Thank you