S
SeanEvans
I need to regulate the entries made on a spreadsheet to column N.
amusing the following -
Private Sub Worksheet_Change(ByVal Target As Range)
If Target = "sent to TS for payment" Then End
If Target = "sent to Emma" Then End
MsgBox ("NO")
Else
End If
End Sub
Basically an entry made in column N must be one of the above condition
set in the IF statements. How do I set the range these IF statement
apply to
amusing the following -
Private Sub Worksheet_Change(ByVal Target As Range)
If Target = "sent to TS for payment" Then End
If Target = "sent to Emma" Then End
MsgBox ("NO")
Else
End If
End Sub
Basically an entry made in column N must be one of the above condition
set in the IF statements. How do I set the range these IF statement
apply to