Force google sheet formula to recalculate

后端 未结 3 1319
后悔当初
后悔当初 2020-12-09 19:10

I have an index/match formula that matches a specific file based on the date value of certain cells. Here\'s the formula:

=IFERROR(INDEX(INDIRECT(\"\'\"&         


        
3条回答
  •  清歌不尽
    2020-12-09 19:15

    Here's another solution, albeit one that is computationally expensive: pass the range to be considered in the calculation to the function. That way, any time that a value changes in the passed range or that the range itself changes (such as inserting a row within the range), the formula is recalculated.

    Example: Try this simple function.

    function testPassRange( calcRange ) 
    {
        return calcRange.length ; 
    }
    

提交回复
热议问题