No problem, it wasn't that long ago I was asking the same thing. The
Worksheet_Change event, will fire code you specify whenever a cell is
changed. I've done this as a joke before to friends, I've coded so that
when they make a change in a cell, I get Excel to clear the cell
contents. It drives them crazy. To code the Worksheet_Change event, just
go something like this:
Private Sub Worksheet_Change(ByVal Target As Range)
Call Macro1
End Sub
Macro1 is the name of your macro to update the references.
*** Sent via Developersdex http://www.developersdex.com ***
Bookmarks