Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Lets say I have 2022/08/23, I want it to become August 23 in a measure, how would I do this? It would have to work with months that are not the same length so september or may.
Solved! Go to Solution.
Try:
Let's say the date comes from Table[Date].
Text Date =
FORMAT(MAX(Table[Date]), "MMMMM") & " " & DAY(MAX(Table[Date])
Proud to be a Super User!
Paul on Linkedin.
Try:
Let's say the date comes from Table[Date].
Text Date =
FORMAT(MAX(Table[Date]), "MMMMM") & " " & DAY(MAX(Table[Date])
Proud to be a Super User!
Paul on Linkedin.