Can Anyone Help me with this

K

Kinghart

If b2 is >60 and d2 is >=0 then g2 = "Bingo"
If b2 is <60 and d2 is =0 then g2 = "Bingo"
If b2 is <60 and d2 is >1 then g2 = "Sorry
 
R

Rick Rothstein

It would help to know what range of values b2 and d2 can take. Also, what
should happen if b2=60?
 
K

Kinghart

'David Biddulph[_2_ said:
;717295'].... or if D2 <0, or if B2<60 and D2 is >0 and <=1?
--
David Biddulph


It would help to know what range of values b2 and d2 can take. Also, what
should happen if b2=60?

--
Rick (MVP - Excel)



-

*************************************************


+-------------------------------------------------------------------+
+-------------------------------------------------------------------+
 
R

Rick Rothstein

*************************************************
+-------------------------------------------------------------------+
+-------------------------------------------------------------------+


????
 
S

smartin

Kinghart said:
If b2 is >60 and d2 is >=0 then g2 = "Bingo"
If b2 is <60 and d2 is =0 then g2 = "Bingo"
If b2 is <60 and d2 is >1 then g2 = "Sorry"

=IF(OR(AND(B2>60,D2>=0),AND(B2<60,D2=0)),"Bingo",IF(AND(B2<60,D2>1),"Sorry","Undefined"))
 
K

Kinghart

smartin;717554 said:
Kinghart wrote:-

=IF(OR(AND(B2>60,D2>=0),AND(B2<60,D2=0)),"Bingo",IF(AND(B2<60,D2>1),"Sorry","Undefined"))

HEY THANKS..... THAT FORMULA ALMOST WORKED, BUT STILL HAVE SOME
PROBLEMS WITH THE "SORRY" PART.... #NAME?


+-------------------------------------------------------------------+
+-------------------------------------------------------------------+
 
D

David Biddulph

Check your typing, or (better option) copy the formula from the newsgroup
and paste into the formula bar, rather than trying to retype.
 
S

smartin

Kinghart said:
HEY THANKS..... THAT FORMULA ALMOST WORKED, BUT STILL HAVE SOME
PROBLEMS WITH THE "SORRY" PART.... #NAME?

Kinghart,

Kindly use the Caps Lock key so your messages are not in all caps before
posting.

I based the formula on your criteria; it should work unless I missed
something.

What formula did you try?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top