Hi,
I need 2 VBA codes, I have a file with a lot of formula's and don't want them to calculate all at the same time.
First VBA; should turn auto-calculate of at all time
I tried this in ThisWorkBook module but doesn't seem to work?
The second one I would like to only calculate the rows that are filtered. So how the file works is; I filter column B , and it gives me the rows.
I want a button that I can click so it calculates the formulas for the filtered rows only.
Hopefully its clear enough.
Thank you,
David
I need 2 VBA codes, I have a file with a lot of formula's and don't want them to calculate all at the same time.
First VBA; should turn auto-calculate of at all time
I tried this in ThisWorkBook module but doesn't seem to work?
VBA Code:
Private Sub Workbook_Open()
Application.Calculation = xlCalculationManual
End Sub
The second one I would like to only calculate the rows that are filtered. So how the file works is; I filter column B , and it gives me the rows.
I want a button that I can click so it calculates the formulas for the filtered rows only.
Hopefully its clear enough.
Thank you,
David