I'm so frustrated I'm the verge of tears. Anyone want to help take a stab at this?
Somehow the original files were lost (or stolen and deleted) so I've had to start from scratch. I do handicapping for various sports and the math to figure out the scores isn't that hard, it's just long. The most complicated formula in the whole process is actually the one in cell I7 that produces either a "1" or a blank space. A "1" tells me that this game has a favorable line and that people should consider betting on it. There are six possible results of a game:
1: Home team favored and covering the spread
2: Home team favored and not covering the spread
3: Home team favored and the underdog outright winning
4: Away team favored and covering
5: Away team favored and not covering
6: Away team favored and the underdog outright winning
The old formulas worked fine, but maybe I didn't check compatibility with this version of excel? While trying to rewrite the formula I used the ABS function to eliminate two of the OR statements. Each statement by itself works but when I add another AND statement for the OR Logical2 or Logical3 statement, THAT's when it fails.
The values in B1:B4 are upper and lower limits I use. B1 and B2 are for when a team is favored and I predict they will win, but either cover or not cover. The Ldog and Udog numbers are for when the underdog is predicted to win.
Unknown 64 bit
[Table="width:, class:head"][tr=bgcolor:#E0E0F0][th] [/th][th]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
[/table][Table="width:, class:grid"][tr][td]Sheet: Sheet1[/td][/tr][/table]
Somehow the original files were lost (or stolen and deleted) so I've had to start from scratch. I do handicapping for various sports and the math to figure out the scores isn't that hard, it's just long. The most complicated formula in the whole process is actually the one in cell I7 that produces either a "1" or a blank space. A "1" tells me that this game has a favorable line and that people should consider betting on it. There are six possible results of a game:
1: Home team favored and covering the spread
2: Home team favored and not covering the spread
3: Home team favored and the underdog outright winning
4: Away team favored and covering
5: Away team favored and not covering
6: Away team favored and the underdog outright winning
The old formulas worked fine, but maybe I didn't check compatibility with this version of excel? While trying to rewrite the formula I used the ABS function to eliminate two of the OR statements. Each statement by itself works but when I add another AND statement for the OR Logical2 or Logical3 statement, THAT's when it fails.
The values in B1:B4 are upper and lower limits I use. B1 and B2 are for when a team is favored and I predict they will win, but either cover or not cover. The Ldog and Udog numbers are for when the underdog is predicted to win.
Unknown 64 bit
[Table="width:, class:head"][tr=bgcolor:#E0E0F0][th] [/th][th]
A
[/th][th]B
[/th][th]C
[/th][th]D
[/th][th]E
[/th][th]F
[/th][th]G
[/th][th]H
[/th][th]I
[/th][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
1
[/td][td]Lowe[/td][td]7
[/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
2
[/td][td]Upper[/td][td]21
[/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
3
[/td][td]Ldog[/td][td]16
[/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
4
[/td][td]Udog[/td][td]23
[/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][td][/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
5
[/td][td][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
6
[/td][td][/td][td=bgcolor:#A9D08E]Vegas[/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E]Predicted[/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E]Actual[/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
7
[/td][td][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E][/td][td=bgcolor:#A9D08E]=IF(E7=MAX(E7,E8), E7-E8,"")[/td][td=bgcolor:#A9D08E]10.00
[/td][td=bgcolor:#A9D08E]Charlotte[/td][td=bgcolor:#A9D08E]14
[/td][td=bgcolor:#A9D08E]=IF(G7=MAX(G7,G8), G7-G8,"")[/td][td=bgcolor:#A9D08E]=IF(OR(AND(ABS(B8+D8)>$B$1,ABS(B8+D8)<$B$2),AND(ABS(B7+D7)>$B$1,ABS(B7+D7)<$B$2),AND(ABS(B8-D7)>$B$3,ABS(B8-D7)<$B$4),AND(ABS(B7-D8)>$B$3,ABS(B7-D8)<$B$4)),1,"")
[/td][/tr][tr=bgcolor:#FFFFFF][td=bgcolor:#E0E0F0]
8
[/td][td][/td][td=bgcolor:#A9D08E]-39.5
[/td][td=bgcolor:#A9D08E]-38.5
[/td][td=bgcolor:#A9D08E]=IF(E8=MAX(E7,E8), E8-E7,"")
[/td][td=bgcolor:#A9D08E]60.00
[/td][td=bgcolor:#A9D08E]Louisville[/td][td=bgcolor:#A9D08E]70
[/td][td=bgcolor:#A9D08E]=IF(G8=MAX(G7,G8), G8-G7,"")
[/td][td=bgcolor:#A9D08E][/td][/tr][/table][Table="width:, class:grid"][tr][td]Sheet: Sheet1[/td][/tr][/table]