Hello,
I have never used VBA. I saved my excel file in xlsm and put this code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = Range("d1").Address Then
Range("d5").Value = ""
End If
End Sub
But its not working. The idea is when i change my first dropdown menu the second one to be null.
I have never used VBA. I saved my excel file in xlsm and put this code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.Address = Range("d1").Address Then
Range("d5").Value = ""
End If
End Sub
But its not working. The idea is when i change my first dropdown menu the second one to be null.