Forum Discussion
powerbi_lost
4 years agoFrequent Visitor
Grouping Data
I have this visual table and I want it to be first grouped autoamtically by branch and then by Highest to lowest turn around days.
- Anonymous4 years ago
Hi powerbi_lost ,
Here's my solution.
Create a calculated column.
Rank = RANKX('Table',[Turnaround days]+RANKX('Table',[Branch],,DESC,Dense)*100,,DESC,Dense)Then you could add the rank column into the table visual, sort asc.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
4 years agoNot applicable
Hi powerbi_lost ,
Here's my solution.
Create a calculated column.
Rank = RANKX('Table',[Turnaround days]+RANKX('Table',[Branch],,DESC,Dense)*100,,DESC,Dense)
Then you could add the rank column into the table visual, sort asc.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
powerbi_lost
4 years agoFrequent Visitor
Thank you! It worked 🙂