Hi all, I have a macro that runs perfectly when a change is made using the data validation selection in column J.
The problem is I don't want the macro to run if "no" is selected from the drop down menu, only if "Yes" is selected.
What code do I need to add to the following:
The problem is I don't want the macro to run if "no" is selected from the drop down menu, only if "Yes" is selected.
What code do I need to add to the following:
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("J:J")) Is Nothing Then
Call Select_Macro
End If
End Sub
Last edited: