Can I force my vba script to wait until Application.Calculate has finished to recalculate all the formulas?
相关问题
- Excel sunburst chart: Some labels missing
- Stop child process when parent process stops
- Fire resize event once not based on timing
- Error handling only works once
- Error handling only works once
相关文章
- What does it means in C# : using -= operator by ev
- How are custom broadcast events implemented in Jav
- Get column data by Column name and sheet name
- programmatically excel cells to be auto fit width
- Unregister a XLL in Excel (VBA)
- Unregister a XLL in Excel (VBA)
- Programming a touch screen application with SWING
- How many pixels are scrolled on a website with a m
Further to my comments, you can use DoEvents with the
Application.CalculationState
. See this exampleIf you want you can also use a
Do While Loop
to check forApplication.CalculationState
I would also recommend see this link
Topic: Application.CalculationState Property
Link: http://msdn.microsoft.com/en-us/library/bb220901%28v=office.12%29.aspx
Quote From the Above Link