Forum Discussion
subhendude
4 years agoMicrosoft Employee
Sorting Date column in matrix visual
I've a date slicer and a matrix visual to display the data with date as columns. PFA snapshot I would like to configure the matrix visual in such a way that it always sort the date data in the...
- 4 years ago
Hi
I think you need an extra column as index column (Desc) to sort your Date by this extra column
Use RANKX function in new calculate column like below:
index = RANKX(table,'Date,,Desc)
then sort your Date by column Index
HoangHugo
4 years agoSolution Specialist
Hi
I think you need an extra column as index column (Desc) to sort your Date by this extra column
Use RANKX function in new calculate column like below:
index = RANKX(table,'Date,,Desc)
then sort your Date by column Index