kuldeepjainesl
Member
Hi Experts,
This is a condition arisen as two sheets in my workbook are taking 5-10 min to calculate.
I need a way so that I can calculate these by F9 while keep other sheets in auto calculation mode so that my other interactive feature and chart can work based on the data calculated on these two sheets.
I tried this code in both sheet but could not get success.
[pre]
[/pre]
Regards,
This is a condition arisen as two sheets in my workbook are taking 5-10 min to calculate.
I need a way so that I can calculate these by F9 while keep other sheets in auto calculation mode so that my other interactive feature and chart can work based on the data calculated on these two sheets.
I tried this code in both sheet but could not get success.
[pre]
Code:
Private Sub Worksheet_Activate()
Application.Calculation = xlManual
End Sub
Private Sub Worksheet_Deactivate()
Application.Calculation = xlManual
End Sub
Regards,