Help with OR function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm sure I'm doing something silly, but the following formula is evaluating
to #VALUE! instead of TRUE or FALSE (depending on what is contained in cell
I2):

=I2=OR("Ignore","Not Feasible")

Can someone kindly tell me how to fix my formula?

Thanks.
 
I'm sure I'm doing something silly, but the following formula is evaluating
to #VALUE! instead of TRUE or FALSE (depending on what is contained in cell
I2):

=I2=OR("Ignore","Not Feasible")

Can someone kindly tell me how to fix my formula?

Thanks.

What is your complete purpose of the formula? It looks like you may
have to use =if(or( in your formula.
 
I'm sure I'm doing something silly, but the following formula is evaluating
to #VALUE! instead of TRUE or FALSE (depending on what is contained in cell
I2):

=I2=OR("Ignore","Not Feasible")

Can someone kindly tell me how to fix my formula?

Thanks.

Sorry, should've given you my formula with it:

=IF(OR(I2="Ignore",I2="Not Feasible"),TRUE, FALSE)
 
Michael,
Thanks!
Bob

Michael said:
Try this:
=OR(I2="Ignore",I2="Not Feasible")
--
If this posting was helpful, please click on the Yes button.
Regards,

Michael Arch.
 
Thanks for your suggestion! What I was looking for is:

=OR(I2="Ignore",I2="Not Feasible")

Thanks again,
Bob
 
Thanks for your suggestion! What I was looking for is:

=OR(I2="Ignore",I2="Not Feasible")

Thanks again,
Bob







- Show quoted text -

It's initially the same thing.
 

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

Similar Threads

nested function 3
Help with Vlookup and MAX functions 4
Help getting 2 formulas into one 2
Fun with SUMPRODUCT 14
simple formula help 5
Help with Dates 6
IF LEN formula 4
Combining multiple formulas in one cell 5

Back
Top