i need help please.....

mattybayston

New Member
Joined
May 11, 2010
Messages
22
Hi im currently trying to create a soccer table in excel that automatically updates when i put the scores in.

I seem to have cracked everything but the amount of games played in the table.

Basically im using the IF function to determine points from a certain result. However if both cells are blank (i.e game not played yet) the IF function is stil returning with "1" as if the game was a draw as both cell are equal.

is there any way to have the cell remain empty untill actual results are inputted into the cells where the rule applies?

Not sure if this makes much sense without seeing the workbook but there does not seem to be a way i can attach it :(

Any advice or help would be extreamly appreciated,

Cheers

Matty
 
sorry forgot to add, current formula i am using is;

=IF($B$11>$D$11,3,IF($B$11=$D$11,1,0))

this gives me 3 points if the score is greater, 1 if a draw, 0 if less than.

the probem is when the cells are empty it is still coming back with 1, because they are equal even though there is noting in them

Cheers
 
Upvote 0
Try something like this...

Code:
=[COLOR="Red"]IF($B$11="","",[/COLOR]IF($B$11>$D$11,3,IF($B$11=$D$11,1,0))[COLOR="Red"])[/COLOR]
 
Upvote 0

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