The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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