I am using a countif formula on my summary sheet to could true/falses based on the grid which is using a vlookup to another sheet to update the project. However, this formula in the summary sheet is running first and the reports are not accurate. When I refresh the project I can see that the summary sheet takes a couple of seconds to update.
I have this running on another project perfectly, is there a way to combat this, or do I need to rethink my method.
Formulas:
Summary Sheet
=SUM(COUNTIFS(test:test, true), COUNTIF([Confirmed Delivery]:[Confirmed Delivery], true))
Checkbox column formula: (test column in the above formula)
=IFERROR(IF(MATCH(FedEx@row, {lookup}, 0) > 0, true, false), false)