Manual calculation mode doesn't work for tables?

c_wag03

New Member
Joined
Jun 18, 2015
Messages
15
I have always been under the impression that formulas, even if they are in calculated columns in a table, will not calculate if calculation mode is set to manual. However, after several cases of a workbook freezing on me today, and then testing with a very simple formula in a very small table, it appears that is not the case. Not sure if this has always been the case, but I'm on a very recent upset on Office 365. How can I stop formulas from recalculating in a table when setting calculation mode to manual doesn't work?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Are you appending data or replacing data ?
If you are replacing data if you are deleting the existing rows first, then I found its faster if you don't delete the rows. You can delete the content if you want but if the new data is longer even that is unnecessary.

If you are appending data, you can try copying it in leaving a blank row so the table doesn't extend, then when you ready delete the blank row and extend the table to include the new rows.
To extend the table after deleting the blank row:
VBA Code:
ActiveCell.ListObject.Resize ActiveCell.CurrentRegion
 
Upvote 0
Are you appending data or replacing data ?
If you are replacing data if you are deleting the existing rows first, then I found its faster if you don't delete the rows. You can delete the content if you want but if the new data is longer even that is unnecessary.

If you are appending data, you can try copying it in leaving a blank row so the table doesn't extend, then when you ready delete the blank row and extend the table to include the new rows.
To extend the table after deleting the blank row:
VBA Code:
ActiveCell.ListObject.Resize ActiveCell.CurrentRegion
My table is loaded from power query but has several calculated formulas added to the result table. I have other tables that also reference this table with some SUMIFS and XLOOKUPS. I suspect my issue is more related to the other tables referencing it and trying to recalculate during the refresh.
 
Upvote 0

Forum statistics

Threads
1,223,714
Messages
6,174,059
Members
452,542
Latest member
Bricklin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top