毛毛的記事簿
毛毛的學習筆記
2012年5月23日 星期三
How to detect (and execute macro) the value change in specific cell in Excel
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Sheets("Sheet1").Range("Your range")) Is Nothing Then
Application.EnableEvents = False
'Do something here
Application.EnableEvents = True
End If
End Sub
較新的文章
較舊的文章
首頁
訂閱:
文章 (Atom)