I have the Macro
That starts a timer macro (Recalc) in my excel sheet when the workbook is opened, my issue is that when the work book closes it continues to run.
Will the following macro fix this problem, or is there some command like Workbook_Open() but for closing?
Code:
Private Sub Workbook_Open()
Recalc
End Sub
Will the following macro fix this problem, or is there some command like Workbook_Open() but for closing?
Code:
Private Sub Workbook_Close()
Disable **Macro for turning off the timer**
End Sub