Forum Discussion
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])
How can I order the Month Name from January to December?
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
7 Replies
- camargos88Community 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
- borensmRegular Visitor
I followed you until the last step. How do I sort MonthName by YearMonth in a matrix table?
- jbircoResolver 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
- jbircoResolver I
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
- borensmRegular Visitor
Actually, I figured out how but I'm getting this error message: