Buddha_420
New Member
Hi all,
The below code makes a window pop up if the condition is met (T1 <>0). It works fine but my problem is that when I close the window, it pops up again soon after as the condition is still met until I can fix it. Is there a way to have the window stop popping up for say 5 minutes?
Thanks,
William
The below code makes a window pop up if the condition is met (T1 <>0). It works fine but my problem is that when I close the window, it pops up again soon after as the condition is still met until I can fix it. Is there a way to have the window stop popping up for say 5 minutes?
Thanks,
William
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Sheets("Overview").Range("T1") <> 0 Then
MsgBox "Mismatch!"
End If
End Sub