Hi,
I am trying to create a popup based on certain cells changing their value from the default value. Say I have 10 cells from A1 and the def value is Select an Option (drop list). I want to have a MsgBox popping up if any of the cells from A1 through A10 is changed from "Select an Option" to anything else.
What I did is the following only for the first cell:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("A1").value <> "Select an Option" Then
MsgBox "These services are rendered in design phase only. Be sure to check the corresponding services in the Construction Tab and select as applicable", vbExclamation, "Additional Services"
End If
End Sub
I am trying to create a popup based on certain cells changing their value from the default value. Say I have 10 cells from A1 and the def value is Select an Option (drop list). I want to have a MsgBox popping up if any of the cells from A1 through A10 is changed from "Select an Option" to anything else.
What I did is the following only for the first cell:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("A1").value <> "Select an Option" Then
MsgBox "These services are rendered in design phase only. Be sure to check the corresponding services in the Construction Tab and select as applicable", vbExclamation, "Additional Services"
End If
End Sub