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.
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! | |