Check multiple cells for a match

  • Thread starter Thread starter Rusty
  • Start date Start date
R

Rusty

I am trying to create a formula that checks multiple specific cells and then
returns a "YES" if it matches or a "NO" if it doesn't match any of the cells.

example

I have two worksheets - 1 and 2
I want to search these cells only on worksheet 1- cells B3, B24, B63, B78,
B89 (But none of the cells in between such as B4, B35, etc) for a match with
worksheet 2 cell A2.

Is this possible?

TIA.

Rusty
 
=IF(OR(B3=Sheet2!A2,B24=Sheet2!A2,B63=Sheet2!A2,B78=Sheet2!A2,B89=Sheet2!A2),"Yes","No")
Regards,
Stefi

„Rusty†ezt írta:
 
Or a macro approach. Modify to suit

Sub checkcertaincells()
For Each i In Range("c4,c6,c10")
If i = Range("f7") Then mycount = mycount + 1
Next i
If mycount > 0 Then MsgBox "There are " & mycount & " matches"
End Sub
 
Thanks Stefi and Don. I'll go with Stefi's as it was the first one I tried
and it is working great.

Thankyou
 
Back
Top