This may be real simple, but...

  • Thread starter Thread starter Cerberus
  • Start date Start date
C

Cerberus

I am trying to do an IF equation but I have two values that I want to be
true, how would I go about this? Basically I want 2 or 3 to equal “go†and
everything else equal “no goâ€. I have tried to use something like this

IF((B3+B4)=2<>3,â€no goâ€,â€goâ€

but that did not work.
Thank you all for your help.
 
Not sure what you want but I think you want "no go" if B3+B4 equals 2 or 3,
and "go" if not.
If that's what you want:
=IF(OR(B3+B4=2,B3+B4=3),"go","no go")

HTH Otto
 
hi
your request is a bit confusing but i think this may help...
=IF(OR(B3+B4=2,B3+B4=3),"no go", "go")

post back if i'm off from your meaning.

Regards
FSt1
 
,How about this.

if(and((B3+b4)>2,(B3+B4)<3)),"no go","go)

in english.
if sum is greater than 2 and sum is less than 3 then true ("no go") else
false ("go")
 

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

Back
Top