S
Sam
Hi All,
How can I display a message box if a range (B1:B10) has one of these values
(tom,ross,chad,sam,josh,jill) on a button click (DisplayMessage)
Here is what I have so far but I get a type mismatch error:
Sub DisplayMessage_Click()
If Worksheets("Sheet1").Range("B1:B10) = "tom" or "ross" or "chad" or "sam"
or "josh" or "jill") Then
MsgBox ("Name present")
End If
End sub
Thanks in advance
How can I display a message box if a range (B1:B10) has one of these values
(tom,ross,chad,sam,josh,jill) on a button click (DisplayMessage)
Here is what I have so far but I get a type mismatch error:
Sub DisplayMessage_Click()
If Worksheets("Sheet1").Range("B1:B10) = "tom" or "ross" or "chad" or "sam"
or "josh" or "jill") Then
MsgBox ("Name present")
End If
End sub
Thanks in advance