Forum Discussion
HenryJS
5 years agoPost Prodigy
Matrix Month Column Wrong Order
Hi all, I have placed the month name column (below) in a matrix however it does not order correctly. Month = MONTH([Date]) Month Name = SWITCH('Calendar'[Month],1,"January",2,"February"...
- 5 years ago
in the data view click on the month name column and thenunder the column tools tab click the sort bycolumn tab to sort by the month number column
camargos88
5 years agoCommunity Champion
HenryJS ,
You can create a column on the date table like:
YearMonth = FORMAT(TABLE[DATE], "YYYYMM")
MonthName = FORMAT(TABLE[DATE], "MMMM")
and sort the MonthName by YearMonth
borensm
2 years agoRegular Visitor
I followed you until the last step. How do I sort MonthName by YearMonth in a matrix table?
- jbirco2 years agoResolver I
once you do the sort in the table view it will work in all visuals including the matrix, BTW you can sort it by a column that has just the month number it dosn't have to be a yearmonth column