I have two columns in Excel A & B - the values in column B are contained within larger strings in column A.
ie column A: abcedsdes4568sdfs Column B: es456
How do I use countIF to show/detect any matches?
I have two columns in Excel A & B - the values in column B are contained within larger strings in column A.
ie column A: abcedsdes4568sdfs Column B: es456
How do I use countIF to show/detect any matches?
If you just want to know whether the B value has a [partial] match with column A try using wildcards, e.g. this formula in C1 copied down
=COUNTIF(A:A,"*"&B1&"*")>0
TRUE means a match