Enable iterative calculation issue

Anonymous
2022-12-22T23:02:56+00:00

Hello Microsoft Community,

I have created shared excel file on SharePoint, in which I have some formula having own cell reference hence I am getting circular formula error. And to solve that error I have tick marked Enable iterative calculation as highlighted in below image. But this tick automatically disable everyday meaning everyday I have tick again.

how we can resolve this issue? Means tick on "enable iterative calculation" once not everyday.

Thank you in advance

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
{count} votes

6 answers

Sort by: Most helpful
  1. Anonymous
    2022-12-23T02:10:54+00:00

    Hi Parikh Anish,

    Greetings! Thank you for posting to Microsoft Community.

    It looks design behavior for iterative. Suggest Send feedback to Microsoft

    Excel will apply/use the calculation settings of the first workbook you open in a session. So, if you first open workbook A (which had iteration disabled when it was last saved) and then Workbook B (with iteration enabled when it was last saved), Excel will keep iteration disabled.

    As workaround, save the file as xlsm(Macro enabled workbook), Then copy the code to "this workbook".

    This code will set the iteration enabled when the workbook is open.

    Private Sub Workbook_Open() Application.Iteration = True End Sub

    Best Regards,

    Snow Lu

    2 people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2022-12-23T02:47:52+00:00

    Hello Snow Lu,
    Thank you very much for your respond.

    Just wondering, will macro work on SharePoint shared file?
    Because I have tried but macro is not working on online 365.

    Is there any other way for doing this?

    Thank you

    Best Regards,

    Anish Parikh

    0 comments No comments
  3. Anonymous
    2022-12-23T03:01:02+00:00

    You cannot run macro in the Excel online.

    Could you share us the formula and purpose for calculate itself? It may some other way to accomplish it.

    0 comments No comments
  4. Anonymous
    2022-12-28T01:18:51+00:00

    Hello Snow Lu,
    Thank you very much for your respond.

    Here is my formula: =IF($A4<>"",IF(E4="",TODAY(),E4),"")

    Output from Formula: If X person make entry in column A cells then automatically date should come at column E cells and after that it should not be changed.

    Is there any other way to get the this?

    Thank you in advance

    Best Regards,

    Anish Parikh

    0 comments No comments
  5. Anonymous
    2022-12-28T03:21:16+00:00

    No other way to get unchangeable date from formula without interative calculation.

    It is suggested to manually input the date instead of using formula beacuse of the limitaion of interative calculation settings.

    0 comments No comments