Hi,
does Excel VBA have an event procedure that can be used whenever a cell's value is changed?
Thanks
Nick
Printable View
Hi,
does Excel VBA have an event procedure that can be used whenever a cell's value is changed?
Thanks
Nick
anybody??!!??
I think this will work.
VB Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) End Sub.
or
VB Code:
Private Sub Worksheet_Calculate() End Sub
Mess around :)
Seahag