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().
 
Back
Top