I have a column of time data in 24 Hr time:
Time
625
844
1241
1566
Where 625 is 06:25 AM.
How can I convert this into a usable form for PowerBI? I tried the following M query in the advanced editor Column = CONCATENATE(CONCATENATE(LEFT([Time],LEN([Time])-2),":"),RIGHT([Time],2))
but receive the following message: Expression error: The name 'CONCATENATE' wasn't recognized. Make sure it's spelled correctly.
Thank you,