Hello,
I was able to program a message box to appear based on a particular cell value, but that same message box appears every time I click on a cell. It will continuously appear until the initial cell conditions are no longer met. How do I make it so that the message only appears once?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("B4") = "This household will qualify for the program even if their income is counted." Then
MsgBox "Please direct them to come to the office.", vbOKOnly
End If
End Sub
I was able to program a message box to appear based on a particular cell value, but that same message box appears every time I click on a cell. It will continuously appear until the initial cell conditions are no longer met. How do I make it so that the message only appears once?
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Range("B4") = "This household will qualify for the program even if their income is counted." Then
MsgBox "Please direct them to come to the office.", vbOKOnly
End If
End Sub