Forum Discussion
Anonymous
3 years agoNot applicable
Sort a Month Year Column
I am trying to sort a column called MOnth Year Num. How can I create a column to sort it? I have a Bar chart that shows the last 3 months. So I want to sort that column so that October 2...
- 3 years ago
Hi,
One of ways to create a sort column for the Month Year Num column is to create a ENDOFMONTH column by using a DATE column and EOMONTH DAX formula.
EOMONTH function (DAX) - DAX | Microsoft Learn
I hope this helps.
- Anonymous3 years agoMonth and Year = FORMAT([Date], "YYYY") & MONTH('Calendar'[Date])try this, let me know if it works 🙂
Jihwan_Kim
3 years agoSuper User
Hi,
One of ways to create a sort column for the Month Year Num column is to create a ENDOFMONTH column by using a DATE column and EOMONTH DAX formula.
EOMONTH function (DAX) - DAX | Microsoft Learn
I hope this helps.
Anonymous
3 years agoNot applicable
Please expound, I did not understand your solution..