Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Is there a way to sort a table by the results of two columns?
In the first column I have the results of our delivery reliability evaluation. In the second column I have the quantity of our deliveries. Now I would like to sort the table. At row one I would like to have the lowest result of the first column with the highest result of the second column. Providing that there is more than one position with the same result in column one.
Example:
Before sorting:
Column 1 Column 2
30% 5
20% 2
40% 1
20% 1
60% 4
50% 3
20% 3
20% 2
After sorting:
Column 1 Column 2
20% 3
20% 2
20% 2
20% 1
30% 5
40% 1
50% 3
60% 4
I hope someone of you can help me to fix my problem!
Solved! Go to Solution.
Another method would be to create a third calculated column:
Column 3 = ([Column 1] * 100) + (1/[Column 2])
Add that to your table and sort by that.
Another method would be to create a third calculated column:
Column 3 = ([Column 1] * 100) + (1/[Column 2])
Add that to your table and sort by that.