The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi, I'm new here. I'm having troubles with the FORMAT function:
- I have a daily Date Table, calculated from CALENDARAUTO function.
- I'm using this formula create a calculated column to get an abbreviated month name:
Solved! Go to Solution.
Hi @caf_fdc
Use this DAX
MMM =
FORMAT(
'Date'[Date],
"MMM"
)
Or
MMM FUll name =
FORMAT(
'Date'[Date],
"MMMM"
)
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
Remove MONTH function like below:
Hi @caf_fdc
Use this DAX
MMM =
FORMAT(
'Date'[Date],
"MMM"
)
Or
MMM FUll name =
FORMAT(
'Date'[Date],
"MMMM"
)
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |