Value error on OR command

  • Thread starter Thread starter #VALUE! Error
  • Start date Start date
V

#VALUE! Error

I have unput the following formula and instead of getting
a false I get a #VALUE! error. Returns true statement if
both are true. Does anyone know why this is happening.
Seems pretty straightforward. Does not matter if I use
find or findb


=OR(FINDB("ISO",G2),FINDB("CAN",G2))
 
Because findb or find return an error if they cannot find the string, wrap
both findb formulas with isnumber like

=OR(ISNUMBER(FINDB.....),ISNUMBER(FINDB.....))
 
I'll try and let you know. Thanks
-----Original Message-----
Because findb or find return an error if they cannot find the string, wrap
both findb formulas with isnumber like

=OR(ISNUMBER(FINDB.....),ISNUMBER(FINDB.....))

--

Regards,

Peo Sjoblom





.
 
It worked. Thanks
-----Original Message-----
Because findb or find return an error if they cannot find the string, wrap
both findb formulas with isnumber like

=OR(ISNUMBER(FINDB.....),ISNUMBER(FINDB.....))

--

Regards,

Peo Sjoblom





.
 
Try this instead

=OR(NOT(ISERROR(FIND("ISO",G2))),NOT(ISERROR(FIND("CAN",G2))))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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