Hi
I see the problem.
When hastily posting a quick example, I hadn't included the test to ensure you didn't have more than 1 cell selected.
If Target.Count > 1 Then Exit Sub
The amended code is
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim myrange As Range
Set myrange = Range("B7:B14")
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, myrange) Is Nothing Then
If Target.Value = "SAT Converted to SAR" Then
Call MsgBox("You have selected SAT Converted to SAR", vbExclamation, "Warning")
End If
End If
End Sub
Bookmarks