Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
alitzellachner
Frequent 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:mm:ss:Z.

I need this for a dynamic API url request. I tried with DateTimeZone.utcnow() and the time.totext function but don't get it. 

 

Thanks for help,

best regards,

Andreas

1 ACCEPTED SOLUTION
rubayatyasmin
Community Champion
Community Champion

Hi, @alitzellachner 

 

try using this way. 

 

let
CurrentDateTime = DateTimeZone.UtcNow(),
ISOFormat = DateTimeZone.ToText(CurrentDateTime, "yyyy-MM-ddTHH:mm:ssZ")
in
ISOFormat

 

DateTimeZone.ToText(CurrentDateTime, "yyyy-MM-ddTHH:mm:ssZ") formats this date and time according to the ISO 8601 format.

 

rubayatyasmin_0-1689517080227.png


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


View solution in original post

3 REPLIES 3
alitzellachner
Frequent Visitor

Thank you- worked

Happy to help. 


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


rubayatyasmin
Community Champion
Community Champion

Hi, @alitzellachner 

 

try using this way. 

 

let
CurrentDateTime = DateTimeZone.UtcNow(),
ISOFormat = DateTimeZone.ToText(CurrentDateTime, "yyyy-MM-ddTHH:mm:ssZ")
in
ISOFormat

 

DateTimeZone.ToText(CurrentDateTime, "yyyy-MM-ddTHH:mm:ssZ") formats this date and time according to the ISO 8601 format.

 

rubayatyasmin_0-1689517080227.png


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors