A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
DATE() by itself should not create a circular reference. A circular reference happens when a formula refers to its own cell, either directly or indirectly through other formulas.
For this issue, use these checks:
- In Excel, go to Formulas > Error Checking > Circular References.
- Select the first cell listed there to trace the dependency chain.
- If the list points to cells using
DATE(), the problem is likely an indirect reference elsewhere in the workbook, not theDATEfunction itself.
- Check whether the formula is actually
DATE(...)or a different date-related formula.-
DATErequires arguments. - If the formula uses
NOW()or another formula combined with cells that eventually point back to the same cell, Excel can flag that as circular.
-
- If the formula was entered in a cell that is also included in a range used by that formula or by a dependent formula, move the formula to another cell and test again.
- Example from Microsoft guidance: a formula like
=SUM(A3:F3)entered inF3creates a circular reference because it includes itself.
- Example from Microsoft guidance: a formula like
- Check calculation mode.
- Go to File > Options > Formulas.
- Under Workbook Calculation, make sure Automatic is selected.
- This does not cause circular references by itself, but it can help with formula behavior if calculations seem inconsistent.
- If the circular reference is intentional, enable iteration:
- File > Options > Formulas
- Turn on Enable iterative calculation
- By default, Excel stops after 100 iterations or when values change by less than 0.001.
- Only use this if the circular reference is expected.
If a brand-new blank worksheet with only one formula still shows a circular reference, the practical next step is still to use Formulas > Error Checking > Circular References and see which cell Excel reports. That identifies whether the reference is direct or indirect.
References: