Hello,
I have little experience with vba but have used some simple code in some workflow sheets.
I have used the following worksheet change event code successfully but I am having problems figuring out how to add two more cells to be monitored. They will all have the result of running the same macro.
Any help would be appreciated.
[pre]
[/pre]
I have little experience with vba but have used some simple code in some workflow sheets.
I have used the following worksheet change event code successfully but I am having problems figuring out how to add two more cells to be monitored. They will all have the result of running the same macro.
Any help would be appreciated.
[pre]
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 3 And Target.Row = 46 Then
Call Skidtag
End If
End Sub