Hello Stack Overflow Community! I am a major Noob at VBA scripting and think I have an easy question? I have some simple code on my worksheet that calls a function every time a value is changed in a specific cell.
The Problem is, is that cell is a drop down menu and when you change the selection of the drop down to the same value it still runs the code..
To be clear, I want the code to run when the drop down changes. Just not when it "changes" to the same value. Pasting my code below. Let me know if you can help!
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$W$21" Then
Call Financing
End If
End Sub
I was thinking maybe add a .ignore or something maybe?