Forum Discussion
Changing columns order i matrix
- 6 years ago
Anonymous , You might have to on this column or create one more column and do on that. As after this column will sort desc.
Version New = [Version] /// New colum which will sort desc
Version New Rank = Rankx(All(Table),[Version],,desc,Dense) // Do not use Verison New
Now mark the Version New Rank as sort column of Version New
https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column
In case of any issue with rank refer
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
Anonymous , You might have to on this column or create one more column and do on that. As after this column will sort desc.
Version New = [Version] /// New colum which will sort desc
Version New Rank = Rankx(All(Table),[Version],,desc,Dense) // Do not use Verison New
Now mark the Version New Rank as sort column of Version New
https://docs.microsoft.com/en-us/power-bi/desktop-sort-by-column
In case of any issue with rank refer
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
https://radacad.com/how-to-use-rankx-in-dax-part-2-of-3-calculated-measures
https://radacad.com/how-to-use-rankx-in-dax-part-3-of-3-the-finale
- Anonymous6 years agoNot applicable
Thank you amitchandak .