Formulas
Excel offers various formulas to manipulate data in a sheet. Sometime it goes difficult when data grows and bulk formulas are used in the sheet. There are countless issues occurs when data grows in a sheet having lots of formulas.
Issues
- Slow processing
- Excel Crash or unresponsive
- Slow calculation updates
- Single change cause excel goes in processing mode and user is stucked
- Slow file opening
- Too much time to save file
Precautions
- Avoid volatile functions as listed below because volatile functions attract penalty on each change made in a cell or sheet cause recalculation:
- Index
- Now
- Today
- RANDBETWEEN
- OFFSET
- INDIRECT
- Keep auto calculation mode to MANUAL while dealing with large data set with too many formulas
Example
Consider you have a sheet having more than 5-6 Lac records with various formulas including volatile formulas cause Excel slow. How to make safe calculations to avoid any unexpected loss and perform safe calculations over data?
Steps
- Put auto calculation mode to Manual mode (refer various calculation mode in Excel)
- Make necessary changes in the sheet
- Select one or two rows and Calculate Row Major Order to make sure your change is meeting the exceptions.
- If step 3 is OK then you can turn on Manual Calculation mode off or Refresh Sheet by hitting Calculate Now button
Note: Above recommendations are based on experience to share with people as best practice. Reader might have slightly different or completely different situation with the data he is dealing with and it may not work.