FormulaCraft

Fix the Circular error

Excel & Google Sheets

What Circular means

A circular reference happens when a formula depends on its own result — either directly (a cell refers to itself) or through a loop of cells that point back to the start. The spreadsheet cannot settle on an answer.

Common causes

Example fix

Broken
=SUM(A1:A10)
Fixed
=SUM(A1:A9)

Typed into A10, the first version sums itself. Exclude the formula’s own cell from the range.

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

How to fix it

  1. 1In Excel, check Formulas → Error Checking → Circular References to jump straight to the offending cell.
  2. 2In Google Sheets, the error message names the cell where the loop is detected.
  3. 3Adjust the range so the formula no longer includes its own cell — e.g. =SUM(A1:A9) in A10, not =SUM(A1:A10).
  4. 4Break the loop by introducing a separate helper cell instead of pointing two cells at each other.
  5. 5Only enable iterative calculation if you intentionally need a converging loop, and you understand the consequences.

Stop hunting errors by hand.

Upload your spreadsheet and the Auditor flags every Circular and broken formula at once — or paste this one formula and get the fix explained.

Frequently asked

How do I find a circular reference in Excel?

Go to Formulas → Error Checking → Circular References. Excel lists the cells involved so you can open and fix each one.

Should I turn on iterative calculation?

Only if the loop is intentional (some financial models need it). For an accidental circular reference, fix the formula instead.

Related formulas

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: