Forum Discussion
Descending sort financial year - matrix visual
Hi everyone, I have this measure that sorts the month & year in financial starting july (ascending order)…now, how can I sort it in descending order in matrix visual as it doesn’t show up the month & year in columns? Thanks in advance 😀
Month Financial Year Sort =
IF (
MONTH ( Dates[Date] ) > 6,
MONTH ( Dates[Date] ) - 6,
MONTH ( Dates[Date] ) + 6
)
Hi ronaldbalza2023 ,
There is no option to do that out of the box. What you can do is to sort that by another column. I've just answerd a similar question in separate post. Looks like the visuals dev have been missing to add that feature over the years.
https://community.powerbi.com/t5/Desktop/Order-axis-for-matrix-visual/m-p/2778988#M965008
2 Replies
- danextian
Super User
Hi ronaldbalza2023 ,
There is no option to do that out of the box. What you can do is to sort that by another column. I've just answerd a similar question in separate post. Looks like the visuals dev have been missing to add that feature over the years.
https://community.powerbi.com/t5/Desktop/Order-axis-for-matrix-visual/m-p/2778988#M965008
- ronaldbalza2023
Continued Contributor
This will do. Thanks for taking the time danextian