IF statements???

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

Guest

What would the syntax be for the following logic.

I want cell C8 to recognize whether or not cell A4 contains the word CRV.
Even if A4 contains other words in addition to CRV I want it to return a
"true" response to me. Is there a syntax for this command??

Chris
 
What would the syntax be for the following logic.

I want cell C8 to recognize whether or not cell A4 contains the word CRV.
Even if A4 contains other words in addition to CRV I want it to return a
"true" response to me. Is there a syntax for this command??

Chris


=NOT(ISERROR(FIND("CRV",A4)))

will return FALSE if CRV is not present and TRUE if it is present.

The formula is case-sensitive. For a case-insensitive formula, use SEARCH:

=NOT(ISERROR(SEARCH("CRV",A4)))


--ron
 
Ron Rosenfeld said:
=NOT(ISERROR(FIND("CRV",A4)))

will return FALSE if CRV is not present and TRUE if it is present.

The formula is case-sensitive. For a case-insensitive formula, use SEARCH:

=NOT(ISERROR(SEARCH("CRV",A4)))


--ron

Ron:

You be da man!!!

Thanks

Chris
 

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