I have no idea how to do the following and would appreciate help in some way 
I have a view displaying the following:
ID Week Wins Difference name
1 1 1 2 jason
1 1 1 5 john
1 1 0 24 jay
I want to add a field that ranks the order. I sort wins desc and difference ascd to determine the order and winner.
I need to have a field that would rank the order 1 2 3 4 and so on.
Sometimes their may be a tie.
In that case the rank would do this 1, 1, 2, 3, 4, 5, 5, 6 etc...
Tie example:
ID Week Wins Difference name
1 1 1 2 jason
1 1 1 2 john
the logic is the most wins and smallest difference in the overall winner, and should follow this order.
is this possible?
I have a view displaying the following:
ID Week Wins Difference name
1 1 1 2 jason
1 1 1 5 john
1 1 0 24 jay
I want to add a field that ranks the order. I sort wins desc and difference ascd to determine the order and winner.
I need to have a field that would rank the order 1 2 3 4 and so on.
Sometimes their may be a tie.
In that case the rank would do this 1, 1, 2, 3, 4, 5, 5, 6 etc...
Tie example:
ID Week Wins Difference name
1 1 1 2 jason
1 1 1 2 john
the logic is the most wins and smallest difference in the overall winner, and should follow this order.
is this possible?