COMPARE TEXT

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"
 
D

David Biddulph

=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

Similar Threads

summarizing data from various workbooks 3
Please suggest any formulae / functions 2
Return Number 2
vba programming 1
#VALUE error add'g formulas 1
Reference Formula 1
IF,AND... 1
SUM / COUNT formula 3

Top