Microsoft Excel¶
Common Issues & Fixes¶
Workbook Is Slow / Freezing¶
- Check for volatile formulas used excessively —
INDIRECT,OFFSET,NOW,TODAY, andRANDrecalculate on every change. Replace with static references where possible. - Switch calculation to manual while editing large sheets: Formulas → Calculation Options → Manual. Press F9 to recalculate when needed.
- Remove unnecessary conditional formatting: Home → Conditional Formatting → Manage Rules — delete rules applied to entire columns.
- Check for excessive named ranges or hidden sheets with large data sets.
Formula Errors¶
| Error | Cause | Fix |
|---|---|---|
#REF! | Cell reference is invalid (usually from a deleted row/column) | Check and correct the formula reference |
#VALUE! | Wrong data type in a formula | Ensure numbers aren't stored as text |
#DIV/0! | Dividing by zero or empty cell | Wrap with =IFERROR(formula, "") |
#NAME? | Misspelled function name or missing quotes | Check function spelling |
#N/A | VLOOKUP / MATCH can't find a value | Verify lookup value and range; use IFERROR |
###### | Column too narrow to display value | Widen the column |
Numbers Stored as Text¶
Numbers imported from CSV or other sources sometimes behave as text, breaking SUM and other formulas.
- Select the affected column.
- Data → Text to Columns → Finish (no changes needed — this forces re-evaluation).
- Or use a helper column:
=VALUE(A1)and paste-as-values back.
Pivot Table Not Refreshing¶
- Right-click the pivot table → Refresh.
- If new rows were added to the source data outside the original range, update the source: PivotTable Analyze → Change Data Source.
- To refresh all pivot tables on open: PivotTable Analyze → Options → Data → Refresh data when opening the file.
Protected Sheet — Forgot the Password¶
Warning
Only attempt this on files you own or have authorisation to access.
There is no built-in recovery for sheet passwords. Options: - If the file was previously unprotected and saved, restore from a backup or version history (SharePoint/OneDrive version history). - Third-party tools exist but are outside scope — raise with your IT administrator.
Excel Crashes When Opening a Specific File¶
- Open in Safe Mode to rule out add-ins:
excel.exe /safe - Try opening via File → Open → Open and Repair.
- If the file is from an external source, it may be in Protected View — click Enable Editing if you trust the source.
Keyboard Shortcuts¶
| Action | Shortcut |
|---|---|
| Recalculate all | F9 |
| Enter current date | Ctrl+; |
| Enter current time | Ctrl+Shift+; |
| AutoSum selected range | Alt+= |
| Format cells dialog | Ctrl+1 |
| Fill down | Ctrl+D |
| Fill right | Ctrl+R |
| Go to a cell | Ctrl+G |
| Select entire column | Ctrl+Space |
| Select entire row | Shift+Space |