COMPARE TEXT

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

Guest

I need find a way to compare two cells this way
example
Cell A3 Content = UV2345ZC
Cell B3 Content = System closed
The result in Cell C3 should be True if Cell A3 contain "ZC" and Cell
B3 contain "Closed"
 
=AND(ISNUMBER(SEARCH("ZC",A3)),ISNUMBER(SEARCH("Closed",B3)))

If you want the searches to be case-sensitive, then replace SEARCH() by
FIND().
 

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