Excel VBA Target Worksheet change
When I cut and paste the below MS excel macro into a new workbook
module sheet, it does not work?
I type the y in column c, this macro will not work...
Please help...
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Column = 3 Then
If (Target.Text = "y") Then
MsgBox "hello"
End If
End If
End Sub
|