これを試して
で、変数Module
を宣言しますPublic
Public CodeChangingCells As Boolean
関連するセルを変更できるすべての Subs で、この変数を設定します
Sub SubTahtChangesCells()
On Error GoTo EH
CodeChangingCells = True
Sheet1.[A1] = Sheet1.[A1] + 1
CleanUp:
On Error Resume Next
CodeChangingCells = False
Exit Sub
EH:
' Handle errors
GoTo CleanUp
End Sub
Cnage
イベントでこの変数をテストし
ますTarget
Selection
Private Sub Worksheet_Change(ByVal Target As Range)
Dim r1 As Range
If Not CodeChangingCells Then
Set r1 = Me.Range("A1:B10")
If Intersect(Target, r1) Is Nothing Then Exit Sub ' how to write this line ?
MsgBox "323"
End If
End Sub