jlhoover3
Board Regular
- Joined
- Nov 9, 2015
- Messages
- 62
- Office Version
- 365
- Platform
- Windows
Hello everyone,
I have a golf leaderboard sheet that I'm creating that will help rank and flight the tournament as needed. One thing that comes up often is the tie breaker that can change the flight you may be in (depending on ties). The way we do our tie breaker is pick a hole to start on and continue to the next hole until the tie breaker has been decided. For example, if the tie breaker hole starts on hole 3, then the tie breaker goes in this hole sequence (3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, and 2).
So far I have it all planned out by getting the Initial Rank on the total scores, and then adding the scores of each hole as a decimal. For example, Team A scores 69 and is initially ranked 2nd, and their hole by hole scores (starting on hole 3) go 4-4-4-4-4-4-4-4-4-4-4-4-1-4-4-4-4-4, with a final Tie Break Value of 2.444444444444144444. Then I would just use the rank function on the Tie Break value to find the answers. However, Excel only carries out 15 digits for the number and pulls the number as such, 2.444444444444100000. Does anybody have any suggestions on how I can get this to read all digits? Below is my equation to pull the Tie Breaking Formula.
Thanks again for the help!
I have a golf leaderboard sheet that I'm creating that will help rank and flight the tournament as needed. One thing that comes up often is the tie breaker that can change the flight you may be in (depending on ties). The way we do our tie breaker is pick a hole to start on and continue to the next hole until the tie breaker has been decided. For example, if the tie breaker hole starts on hole 3, then the tie breaker goes in this hole sequence (3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, and 2).
So far I have it all planned out by getting the Initial Rank on the total scores, and then adding the scores of each hole as a decimal. For example, Team A scores 69 and is initially ranked 2nd, and their hole by hole scores (starting on hole 3) go 4-4-4-4-4-4-4-4-4-4-4-4-1-4-4-4-4-4, with a final Tie Break Value of 2.444444444444144444. Then I would just use the rank function on the Tie Break value to find the answers. However, Excel only carries out 15 digits for the number and pulls the number as such, 2.444444444444100000. Does anybody have any suggestions on how I can get this to read all digits? Below is my equation to pull the Tie Breaking Formula.
Excel Formula:
=VALUE(CONCAT([@[I Rank]],".",TEXTJOIN("",TRUE,MensLeaderboard[@[T1]:[T18]])))
Thanks again for the help!