Forum Discussion
alitzellachner
3 years agoFrequent Visitor
Datetimezone conversion
Hy, I'm new in Power BI and in this forum but currently didn't find an appropriate solution 🙂 I want to get the actual date and time (UTC) into a ISO 8601 standard text with format yyyy-mm-ddThh:m...
- 3 years ago
Hi, alitzellachner
try using this way.
let
CurrentDateTime = DateTimeZone.UtcNow(),
ISOFormat = DateTimeZone.ToText(CurrentDateTime, "yyyy-MM-ddTHH:mm:ssZ")
in
ISOFormatDateTimeZone.ToText(CurrentDateTime, "yyyy-MM-ddTHH:mm:ssZ") formats this date and time according to the ISO 8601 format.
alitzellachner
3 years agoFrequent Visitor
Thank you- worked
- rubayatyasmin3 years agoCommunity Champion
Happy to help.