Is there a way to calculate the entire book, but not all open books in VBA?
I know about
worksheet.Calculate
but it will only do 1 sheet. I also know about
Application.CalculateFull
But I think that it is to recount all open books at the same time.
Is it possible to make only 1 workbook?
Edit: I get the approach:
For Each wks In ActiveWorkbook.Worksheets
wks.Calculate
Next
but it is very dangerous, if there are links between the sheets between them, then the calculation procedure is important. I know that I can find the exact sequence and apply it, the problem is that on very large books this can be a little complicated
source
share