Football Pool
Well, the college football season is quickly coming to a close. With no hockey this year, I don’t know what I’ll do until next August. Watch baseball? Not likely. In the few remaining days, I’ll be watching a lot of bowl games. Not necessarily because I like the match ups, but because I’m in a pool. The pool is arranged thusly:
Everyone gets -10 points for entering. Entrants pick 22 bowl games by the spread. Every loss is -10 points. The top 10 entrants get a percentage of the total points back at the end based on their position. Also, the person with the least points (the biggest loser) gets 1% of the total points at the end. Confusing? Here’s the spreadsheet

To keep track of what’s happening, I’ve added these columns

The formulas are as follows
$AA$8 =SUM((B8:W8=$B$5:$W$5)*1)
$AB$8 =IF($X$5=”",0,ABS(X8-$X$5))
$AC$8 =(RANK(AA8,$AA$8:$AA$651)*1000)+RANK(AB8,$AB$8:$AB$651,1)
$AD$8 =RANK(AC8,$AC$8:$AC$651,1)
$AE$8 =IF(AD8=MAX($AD$8:$AD$651),VLOOKUP(11,percent,2,FALSE),IF(AD8>10,0,VLOOKUP(AD8,percent,2,FALSE)))
$AF$8 =(AE8*($AG$653))-AG8
AA8 - an array formula comparing that entrants picks to the winners.
AB8 - If there’s a tie, the entrant has to predict the combined score of the championship game. If the championship game hasn’t been played, X5 will be blank and this column will be “uninitialized”. Otherwise it will show the tie breaker.
AC8 - This creates a ranking based on the two parameters, most wins and the tie breaker. The first rank is multiplied by 1,000 to keep it separate from the second rank. If there were more than 1,000 entrants, this would have to be made 10,000.
AD8 - This ranks the AC8 ranking to give the actual position of the entrant.
AE8 - This figures the percentage of the points won. The first part, AD8=MAX, tests to see if this person is the biggest loser. If so, the “11″ column is taken from the percent table. If it’s greater than 10, then they get zero, otherwise it gets the appropriate percentage from the table (shown below).
AF8 - Takes the percentage won times the total pot and subtracts AG8. AG8 is the number of losses for that entrant times 10 points.
The percent table is shown below:

AG655 has this formula which is filled down to AG664
=(SUM(OFFSET(AH655,0,0,IF(COUNTIF($AD$8:$AD$651,AF655)>(10-AF655), 11-AF655,COUNTIF($AD$8:$AD$651,AF655)),1)))/COUNTIF($AD$8:$AD$651,AF655)
Oh boy, that formula took a long time to get right. This computes the percentage won by rank. Since there is currently and 8-way tie for 1st, it adds up the percent won for the first 8 spots and divides it by the number of winners. There are at least two people tied for ninth, so positions 2-8 and 10 have no percentage.
The 11th spot uses this formula
=AH665/COUNTIF($AD$8:$AD$651,MAX(AD8:AD651))
which divides the 1% that the big loser wins by however many big losers there are.
You can look at the whole spreadsheet at Download Bash05Blog.zip.
Zoltan Till:
Hi,
A Hungarian friend made some beautiful excel-file about european football.
The language is hungarian, but great!
Here is:
http://www.nemzetisport.hu/cikk.php?cikk=16503
Zoltan
3 January 2005, 8:16 amchris york:
trying to put together a football pool, 100 squares, 10 rows x 10 rows. Cant find the format to fit this idea
Thanks,
Chris York
24 September 2007, 7:13 amDick Kusleika:
Chris: See if this fits the bill
http://www.dailydoseofexcel.com/archives/2007/09/24/office-football-pool/
24 September 2007, 5:15 pmJay Johns:
Does anyone know of an excel spreadsheet that will calculate a confidence pool. Pool members make weekly picks on every NFL game, assigning their own point value to each game. Picks are made “straight up”, not using a point spread system. The winning player for each week is determined by totalling the point values assigned to correctly picked games. Assuming there are 15 games, pick 15 would be my most confident pick and pick 1 would be my least confident pick. For example if I pick Pittsburgh at 15, I will get 15 points if Pittsburg wins. If Pittsburgh loses, I do not receive any points. If Carolina is my 1 pick and they lose, I will only sacrifice 1 point because they are my least confident pick. It would also be nice if the spreadsheet would show current rankings of pool participants as games are completed and scored on the spreadsheet. Thanks.
18 October 2007, 10:55 pmDick Kusleika:
Jay: Try this for starters
http://www.dailydoseofexcel.com/excel/Confidence.zip
19 October 2007, 2:12 pmJay Johns:
Wow, that is great. The pool I manage has over 30 entrants. The format we follow has the confidence points on the first row. It goes from 15 down to 1, left to right. The entry names are on the first column. The teams picked are scattered throughout the grid. Is it possible to follow this pattern? Thanks.
21 October 2007, 3:46 pmChris:
hello I need an excel formula to show win lost percentage, I thought it was number of win divided number of games but if I put in a lost the percentage would not change, ie if a team was 2-4 it would show 2.000% for total number of game in this case is 10. So what I trying to get total number of game is 10 but the percentage should not increase, pretty much like the pros the percentage stay at a 1.000% even if they have 3 win in a row but it they have a lost it goes down a bit.
2 June 2008, 6:54 amDick Kusleika:
If you add a loss, you add to the total games and the percentage goes down
2-4 = 2/6 = .333
2 June 2008, 2:44 pm2-5 = 2/7 = .286