Date() function creating circular reference

Jim Ballas 0 Reputation points
2026-08-11T01:19:13.9433333+00:00

Recently I have been getting the message that I have circular references in my Excel worksheets using version Microsoft® Excel® 2021 MSO (Version 2607 Build 16.0.20228.20124) 64-bit. I have been trying to track them down and its been driving me nuts. So I think I have tracked it down to the Date() Function. Every cell that uses the date() function is indicating a circular reference. As a test I created a new blank worksheet and added only +Date() in a single cell and I get a circular reference. It seems like there is some sort of bug maybe in the latest update or something. Unless I am missing something totally but a blank worksheet with only a single formula should not be indicating a circular reference. If I am doing something wacky any help would be appreciated. Thanks

Microsoft 365 and Office | Excel | For home | Windows

1 answer

Sort by: Newest
  1. AI answer

    2026-08-11T01:19:31.4466667+00:00

    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:

    1. 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 the DATE function itself.
    2. Check whether the formula is actually DATE(...) or a different date-related formula.
      • DATE requires 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.
    3. 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 in F3 creates a circular reference because it includes itself.
    4. 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.
    5. 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:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.