Thread
:
Change Event
View Single Post
#
1
Posted to microsoft.public.excel.programming
merjet
external usenet poster
Posts: 812
Change Event
Add to worksheet module:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$1" Then
'add code here or call macro
'change $B$1 to suit
End if
End Sub
Hth,
Merjet
Reply With Quote
merjet
View Public Profile
Find all posts by merjet