Hi All,
I have some sheets that have some heavy formulas and there are two issues:
- Whenever I update a cell (without formula) the entire sheet just start "flashing" with #BLOCK errors in pretty much all cells with formula and then these errors disappear after 5-10 seconds or so, but that's with every single update. I think it has something to do with the formulas in columns that referencing each other, not to the point that it gives me CIRCULAR errors but to the point it takes longer to for the sheet to process. Is there a way to "turn off" these flashing #BLOCK error when the sheet is processing/loading?
- Sometimes the formula will reference a wrong row. For example, in a cell in row 481, the formula is like the following. So when I copy this cell to say row 491, "480" should be automatically updated to 490. But sometimes it just remains as "480" (or some other numbers if I am doing copy/paste multiple times). Do we know why and is there anything I can do to prevent this? It is a very serious issue because sometimes these wrong formula doesn't give me an error, it gives me a wrong value and I would not have known because there are so many sheets being created/updated everyday by other colleagues and we can't click into all those rows to double check the formula is referencing the correct row, we can only check and fix when there is an error.
=IF(AND(ISNUMBER(INDEX([Row#]:[Row#], MATCH(RowID@row, RowID:RowID, 0) - 1)), NOT(ISBLANK(INDEX(Completed:Completed, MATCH(RowID@row, RowID:RowID, 0) - 1)))), INDEX(Completed:Completed, MATCH(RowID@row, RowID:RowID, 0) - 1), INDEX(Deadline$1:Deadline480, MATCH(RowID@row, RowID:RowID, 0) - 1))
Thanks.