Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
How can I convert a DateTime value to a Date? (in DAX)
For example:
Solved! Go to Solution.
Hi @Ad_456 ,
You could try below code:-
Date_refresh =
VAR UTC_DateTimeZone = UTCNOW()
VAR UTC_Date = FORMAT(UTC_DateTimeZone,"mm/dd/yyyy")
Return UTC_Date
or
You could change data format directly from the ribbon.
Date_refresh = UTCNOW()
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Yes, thank you for this answer. That's exactly what I am looking for.
Hi @Ad_456 ,
You could try below code:-
Date_refresh =
VAR UTC_DateTimeZone = UTCNOW()
VAR UTC_Date = FORMAT(UTC_DateTimeZone,"mm/dd/yyyy")
Return UTC_Date
or
You could change data format directly from the ribbon.
Date_refresh = UTCNOW()
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!