ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Disable and enable auto calculation (https://www.excelbanter.com/excel-programming/337482-disable-enable-auto-calculation.html)

Souris

Disable and enable auto calculation
 
I would like to disable calculation before my code and Enable calculation
after my function.

Can you please let me know what is the functionm I can use?

Thanks in advance,

Norman Jones

Disable and enable auto calculation
 
Hi Souris,

Try something like:

Public Sub XYZ()
Dim CalcMode As Long

With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
End With

'Your Code

Application.Calculation = CalcMode

End Sub

---
Regards,
Norman

"Souris" wrote in message
...
I would like to disable calculation before my code and Enable calculation
after my function.

Can you please let me know what is the functionm I can use?

Thanks in advance,





All times are GMT +1. The time now is 07:41 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com