March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All,
I have a dataset which is in "Year Month" column combination such as “2017-07”.
I have created 2 calculated columns and used Year and Month DAX functions. It works fine.
But when I use Month Name and use Format function the date I get same information ("2017-07") for that new column as shown.
How could I get a Month Name using DAX?
Any help would be highly appreciated.
Solved! Go to Solution.
Thanks @thiagopinho for your reply ...
My issue was this actually
Dataset has string value “Year-Month”
So I used CONCATENATE, YEAR, MONTH and DATEVALUE DAX functions to achieve this
Thanks!
Hey Sandy, 🙂
What did you use to create that "Month Name" column??
to get the month names you may do something like this,
Transform that "Month Name" column to Date type,
and then extract the month name of it.
Date>Month>Name of Month
Thanks @thiagopinho for your reply ...
My issue was this actually
Dataset has string value “Year-Month”
So I used CONCATENATE, YEAR, MONTH and DATEVALUE DAX functions to achieve this
Thanks!
@Anonymous,
You have solved this issue, right? If so, you can accept your reply as answer to close this thread. You can also create Month Name column using DAX below.
MonthName = SWITCH(Table[Month], 1,"Jan", 2,"Feb", 3,"Mar", 4,"Apr", 5,"May", 6,"Jun", 7,"Jul", 8,"Aug", 9,"Sep", 10,"Oct", 11,"Nov", 12,"Dec" )
Regards,
Lydia
User | Count |
---|---|
118 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
171 | |
117 | |
63 | |
57 | |
51 |