I have an unsorted Table A.
C1 C2 C3 C4
----------------------
15 2 7 5
12 5 4 8
19 1 3 12
21 9 1 18
4 11 12 22
I want to sort this table in such a way that values with higher c1, higher c4, higher c2 and lower c3 are on top.
Also, c1 > c2 > c4 > c3 in terms of priority.
I am not sure how to go about this and would really appreciate any help from experts here.
Should I assign a fraction value to each column like c1 = .35 , c2 = .3, c4 = .2, and c3 = .15 and multiply the value for each column by its fraction value and add up all the values for each row?