Dear Wise members of the forum.
Below is a piece of VBA that is working great. I would, however, like to modify it so that it would, after "x" seconds run the Macro one more time. I have put what I would like to happen in bold below.
Any help would be very much appreciated!!!
KH
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
Message "Calculating"
If Not Intersect(Target, Range("D4:D15")) Is Nothing Then cal_model1
Timer 1 sec
Run Macro1 again
"Calculation complete"
Application.ScreenUpdating = True
End Sub
Below is a piece of VBA that is working great. I would, however, like to modify it so that it would, after "x" seconds run the Macro one more time. I have put what I would like to happen in bold below.
Any help would be very much appreciated!!!
KH
Private Sub Worksheet_Change(ByVal Target As Range)
Application.ScreenUpdating = False
Message "Calculating"
If Not Intersect(Target, Range("D4:D15")) Is Nothing Then cal_model1
Timer 1 sec
Run Macro1 again
"Calculation complete"
Application.ScreenUpdating = True
End Sub