Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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! | |
User | Count |
---|---|
84 | |
79 | |
71 | |
47 | |
42 |
User | Count |
---|---|
109 | |
54 | |
50 | |
40 | |
40 |