IF formula to return blanks

mike_ate_a_pie

Board Regular
Joined
Sep 25, 2009
Messages
69
Hi all,

I'm trying to build a formula to return 0,1 or 3 depending on the values entered into C9,D9. Its a football scorecard!

However it reurns 1 when the values in C9,D9 are blanks or text. How do I get the formula to ignore the cells when C9,D9 have no scores in yet.

=IF(C9=D9,1,IF(C9>D9,3,IF(D9>C9,3,0)))

Cheers lads,
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Your orignal formula is incorrect 0 will never occur.
If C9 = D9 then 1 is ok.
If C9 < > D9 then either C9 > D9 or D9 > C9 both of which result in 3 so 0 will never occur in your formula.

Try this instead

=IF(OR(C9="",D9=""),"",IF(C9=D9,1,3))
 
Upvote 0

Forum statistics

Threads
1,215,326
Messages
6,124,256
Members
449,149
Latest member
mwdbActuary

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