bjbalmforth
Board Regular
- Joined
- Jul 21, 2005
- Messages
- 117
I am trying to get a formula that will do the following scoring system, it depends on different cell numbers to award points:
If E14=3 & E16=0 Then if E18=3 then 2
E18=4 then 1
E18=2 then 3
E18=1 then 4
If E14=3 & E16=1 then if E18=3 then 3
E18=4 then 2
E18=5 then 1
E18=2 then 4
E18=1 then 5
If E14=3 & E16=2 Then if E18=3 then 4
E18=4 then 3
E18=5 then 2
E18=6 then 1
E18=2 then 5
E18=1 then 6
If E14=4 & E16=0 then if E18=4 then 2
E18=5 then 1
E18=3 then 3
E18=2 then 4
E18=1 then 5
If E14=4 & E16=1 Then if E18=4 then 3
E18=5 then 2
E18=6 then 1
E18=3 then 4
E18=2 then 5
E18=1 then 6
If E14=4 & E16=2 then if E18=4 then 4
E18=5 then 3
E18=6 then 2
E18=7 then 1
E18=3 then 5
E18=2 then 6
E18=1 then 7
If E14=5 & E16=0 then if E18=5 then 2
E18=6 then 1
E18=4 then 3
E18=3 then 4
E18=2 then 5
E18=1 then 6
If E14=5 & E16=2 Then if E18=5 then 4
E18=6 then 3
E18=7 then 2
E18=8 then 1
E18=4 then 5
E18=3 then 6
E18=2 then 7
E18=1 then 8
If E14=4 & E16=2 then if E18=4 then 4
E18=5 then 3
E18=6 then 2
E18=7 then 1
E18=3 then 5
E18=2 then 6
E18=1 then 7
I came up with the following formula but can not complete the last part as it is to long to fit in the cell.
=IF(B10=4,+IF(B11=0,+IF(B13=4,2)+IF(B13=5,1)+IF(B13=3,3)+IF(B13=2,4)+IF(B13=1,5)))+IF(B10=4,+IF(B11=1,+IF(B13=4,3)+IF(B13=5,2)+IF(B13=6,1)+IF(B13=3,4)+IF(B13=2,5)+IF(B13=1,6)))+IF(B10=4,+IF(B11=2,+IF(B13=4,4)+IF(B13=5,3)+IF(B13=6,2)+IF(B13=7,1)+IF(B13=3,5)+IF(B13=2,6)+IF(B13=1,7))+IF(B10=3,+IF(B11=2,+IF(B13=3,4)+IF(B13=4,3)+IF(B13=5,2)+IF(B13=6,1+IF(B13=2,5)+IF(B13=1,6)))))+IF(B10=3,+IF(B11=0,+IF(B13=3,2)+IF(B13=4,1)+IF(B13=2,3)+IF(B13=1,4)))+IF(B10=3,+IF(B11=1,+IF(B13=3,3)+IF(B13=4,2)+IF(B13=5,1)+IF(B13=2,4)+IF(B13=1,5)))+IF(B10=3,+IF(B11=2,+IF(B13=3,4)+IF(B13=4,3)+IF(B13=5,2)+IF(B3=6,1)+IF(B13=2,5)+IF(B13=1,6)))+IF(B10=5,+IF(B11=0,+IF(B13=5,2)+IF(B13=6,1)+IF(B13=4,3)+IF(B13=3,4)+IF(B13=2,5)+IF(B13=1,6)))+IF(B10=5,+IF(B11=1,+IF(B13=5,3)+IF(B13=6,2)+IF(B13=7,1)+IF(B13=4,4)+IF(B13=3,5)+IF(B13=2,6)+IF(B13=1,7)))
Can anybody help me with shorting this formula and to make it work as outlined above.
Your help will be much appreciated.
If E14=3 & E16=0 Then if E18=3 then 2
E18=4 then 1
E18=2 then 3
E18=1 then 4
If E14=3 & E16=1 then if E18=3 then 3
E18=4 then 2
E18=5 then 1
E18=2 then 4
E18=1 then 5
If E14=3 & E16=2 Then if E18=3 then 4
E18=4 then 3
E18=5 then 2
E18=6 then 1
E18=2 then 5
E18=1 then 6
If E14=4 & E16=0 then if E18=4 then 2
E18=5 then 1
E18=3 then 3
E18=2 then 4
E18=1 then 5
If E14=4 & E16=1 Then if E18=4 then 3
E18=5 then 2
E18=6 then 1
E18=3 then 4
E18=2 then 5
E18=1 then 6
If E14=4 & E16=2 then if E18=4 then 4
E18=5 then 3
E18=6 then 2
E18=7 then 1
E18=3 then 5
E18=2 then 6
E18=1 then 7
If E14=5 & E16=0 then if E18=5 then 2
E18=6 then 1
E18=4 then 3
E18=3 then 4
E18=2 then 5
E18=1 then 6
If E14=5 & E16=2 Then if E18=5 then 4
E18=6 then 3
E18=7 then 2
E18=8 then 1
E18=4 then 5
E18=3 then 6
E18=2 then 7
E18=1 then 8
If E14=4 & E16=2 then if E18=4 then 4
E18=5 then 3
E18=6 then 2
E18=7 then 1
E18=3 then 5
E18=2 then 6
E18=1 then 7
I came up with the following formula but can not complete the last part as it is to long to fit in the cell.
=IF(B10=4,+IF(B11=0,+IF(B13=4,2)+IF(B13=5,1)+IF(B13=3,3)+IF(B13=2,4)+IF(B13=1,5)))+IF(B10=4,+IF(B11=1,+IF(B13=4,3)+IF(B13=5,2)+IF(B13=6,1)+IF(B13=3,4)+IF(B13=2,5)+IF(B13=1,6)))+IF(B10=4,+IF(B11=2,+IF(B13=4,4)+IF(B13=5,3)+IF(B13=6,2)+IF(B13=7,1)+IF(B13=3,5)+IF(B13=2,6)+IF(B13=1,7))+IF(B10=3,+IF(B11=2,+IF(B13=3,4)+IF(B13=4,3)+IF(B13=5,2)+IF(B13=6,1+IF(B13=2,5)+IF(B13=1,6)))))+IF(B10=3,+IF(B11=0,+IF(B13=3,2)+IF(B13=4,1)+IF(B13=2,3)+IF(B13=1,4)))+IF(B10=3,+IF(B11=1,+IF(B13=3,3)+IF(B13=4,2)+IF(B13=5,1)+IF(B13=2,4)+IF(B13=1,5)))+IF(B10=3,+IF(B11=2,+IF(B13=3,4)+IF(B13=4,3)+IF(B13=5,2)+IF(B3=6,1)+IF(B13=2,5)+IF(B13=1,6)))+IF(B10=5,+IF(B11=0,+IF(B13=5,2)+IF(B13=6,1)+IF(B13=4,3)+IF(B13=3,4)+IF(B13=2,5)+IF(B13=1,6)))+IF(B10=5,+IF(B11=1,+IF(B13=5,3)+IF(B13=6,2)+IF(B13=7,1)+IF(B13=4,4)+IF(B13=3,5)+IF(B13=2,6)+IF(B13=1,7)))
Can anybody help me with shorting this formula and to make it work as outlined above.
Your help will be much appreciated.