- #1
DaveC426913
Gold Member
- 22,986
- 6,658
- TL;DR Summary
- I want a column in my score chart that displays ... "standings"
I want a column that displays what standing each team has. (I can't really Google a solution because I don't even know what to call it.)
This the idea:
- team 1 is "1st",
- teams 3 and 10 are "2nd",
- team 5 is 3rd,
etc.:
I can't think of a way of doing it that isn't very complex, involving some sort of text array ("1st", "2nd", etc.) where the top one gets knocked off each time it's used.
A simple sort descending won't work since there's duplicates (3 and 10 are tied for 2nd).
Also, I'd like to make it future-proof - meaning I can't count on the number of teams always being 10.
Maybe I can simplify it by only calculating up to 4th, but Still...
This the idea:
- team 1 is "1st",
- teams 3 and 10 are "2nd",
- team 5 is 3rd,
etc.:
I can't think of a way of doing it that isn't very complex, involving some sort of text array ("1st", "2nd", etc.) where the top one gets knocked off each time it's used.
A simple sort descending won't work since there's duplicates (3 and 10 are tied for 2nd).
Also, I'd like to make it future-proof - meaning I can't count on the number of teams always being 10.
Maybe I can simplify it by only calculating up to 4th, but Still...