Hello, I think it is a noob question but...
How can I range a cell with a variable to a module?
My code right now is pretty simple, this is on the actual sheet:
And in the module code I want to use a variable which ranges the target address...
Is it possible? If it is, how?
Thanks for the time!
How can I range a cell with a variable to a module?
My code right now is pretty simple, this is on the actual sheet:
Code:
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$D$7" Then
Call Procurar
End If
End Sub
And in the module code I want to use a variable which ranges the target address...
Is it possible? If it is, how?
Thanks for the time!