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.
Tahreem24
Super User
4 years agopowerbi_lost Try this new Table DAX:
Table = SUMMARIZE(BranchTable,BranchTable[Branch],"TurnAround Days",SUM(BranchTable[Turnaround Days]))