can't get this equation to work

g_mizzle

New Member
Joined
Feb 15, 2015
Messages
8
I have been trying for sometime to get an equation to work with no luck.
I have 7 columns

1)Game 1, 2)Game 2, 3)Game 3, 4)Total, 5)Grand Total, 6)Average, 7)Handicap

Game 1,2 & 3 are pretty self explanatory as is total
Grand total is a sum of all weekly totals
Average is the average of all games
and handicap is based on 80% of 125
the equation that I am using for handicap is
first check to see if game 1 is blank, if it is, I want to show nothing
second check to see if Game 1,2, &3 are all equal, if they are I want to show the handicap from the previous week
third check to see if average is greater or less then 125
This is what I have come up with

=IF(ISBLANK(A6),""),IF(AND(A6=B6,B6=C6),G5),IF(F6>125,0,(125-F6)*80%)

with this formula I get a #value in the cell, I don't know if there are too many arguments for this formula to work or what, I think it is close but just cant seem to get it work properly

Any help or suggestions are great
Thanks in advance
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try

=IF(ISBLANK(A6),"",IF(AND(A6=B6,B6=C6),G5,IF(F6>125,0,(125-F6)*80%)))
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,255
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top