Why does my Google Sheets formula not automatically recalculate?

后端 未结 3 1554
攒了一身酷
攒了一身酷 2020-12-21 06:04

I have this formula in a cell in a \'Summary\' sheet which is waiting for a new sheet to be created with its name being a date:

=IFERROR(VLOOKUP($A3, INDIREC         


        
3条回答
  •  情话喂你
    2020-12-21 06:27

    Sorry for the late response, but I believe I have a solution that works a little better. I was experiencing the same problem with formulas involving almost exactly the same set of formulas.

    Basically, just add in a check to see if now() equals an impossible time (0), and when it fails (every time), have it execute the formula that won't update on its own.

    =IF(NOW()=0,"",
    IFERROR(VLOOKUP($A3, INDIRECT("'"&TEXT(BN$2,"m/d/yyyy")&"'!$E$6:$o$100"), 11, false), "")
    )
    

提交回复
热议问题