Any idea why this formula always returns the false, even if the result is true?
You can see that all bar the first row in K are >=2 and N is Under 1.5 in all of them, yet all the results come back as L
Any thoughts on what I have done wrong here?
cheers
=IF(AND(K2>="2",N2="Under 1.5"),"W","L")
Predictology_Trading Template v3.1.xlsm | |||||||
---|---|---|---|---|---|---|---|
J | K | L | M | N | |||
1 | FT A | FT Total | Result | Matches | Bet Type | ||
2 | 0 | 1 | L | 1 | Under 1.5 | ||
3 | 1 | 3 | L | 2 | Under 1.5 | ||
4 | 1 | 3 | L | 3 | Under 1.5 | ||
5 | 2 | 4 | L | 4 | Under 1.5 | ||
6 | 3 | 5 | L | 5 | Under 1.5 | ||
7 | 1 | 2 | L | 7 | Under 1.5 | ||
8 | 0 | 2 | L | 8 | Under 1.5 | ||
9 | 2 | 3 | L | 9 | Under 1.5 | ||
Maria Lay |
Cell Formulas | ||
---|---|---|
Range | Formula | |
J2:J9 | J2 | =IFERROR(INDEX('Predictology Result File'!$J$2:$J$14608,MATCH(1,INDEX((A2='Predictology Result File'!$A$2:$A$14608)*(B2='Predictology Result File'!$B$2:$B$14608)*(C2='Predictology Result File'!$C$2:$C$14608),0,1),0)),"No") |
K2:K9 | K2 | =IFERROR(INDEX('Predictology Result File'!$K$2:$K$14608,MATCH(1,INDEX((A2='Predictology Result File'!$A$2:$A$14608)*(B2='Predictology Result File'!$B$2:$B$14608)*(C2='Predictology Result File'!$C$2:$C$14608),0,1),0)),"No") |
L2:L9 | L2 | =IF(AND(K2>="2",N2="Under 1.5"),"W","L") |
N2:N9 | N2 | =IF(C2<>"","Under 1.5","") |
M3:M9 | M3 | =IF(D3<>"",M2+1,"") |
You can see that all bar the first row in K are >=2 and N is Under 1.5 in all of them, yet all the results come back as L
Any thoughts on what I have done wrong here?
cheers