Hello,
I am using the following code to call a macro whenever one of the key cells is changed
Private Sub Worksheet_Change(ByVal Target As Range)
Dim KeyCells As Range, a As Range
Set KeyCells = Sheets(1).Range("$A$55,$B$55,$C$11:$C$18,$C$29,$C$42,$C$46,$C$55,$D$35")
If Not Application.Intersect(KeyCells, Range(Target.Address)) Is Nothing Then Call Macro1
Set a = Range(Target.Address)
End Sub
I would like a to be the cell address of the cell that changed. I then need to know how to use the variable a within my macro.
If that doesnt make sense I can try to explain more.
Thanks.
Bookmarks