mohamed ali abdelgawad
Board Regular
- Joined
- Nov 18, 2016
- Messages
- 71
- Office Version
- 365
- Platform
- Windows
Hi Dear All
Need your help in this case
I created sheet and put this macro on it to track if any cell value changed it make action
Also I add this macro in module to clear it to start from beginning
I want to pause Private Sub action while Macro Clear is running
I hope my bad english help me to deliver to you what I want to do
Thanks
Need your help in this case
I created sheet and put this macro on it to track if any cell value changed it make action
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A2:a200")) Is Nothing Then
Call Call_Start_1
Call Change_1
End If
End Sub
Also I add this macro in module to clear it to start from beginning
Sub Clear()
'
' Clear Macro
'
'
Range("A2:H300").Select
Selection.ClearContents
End Sub
I want to pause Private Sub action while Macro Clear is running
I hope my bad english help me to deliver to you what I want to do
Thanks