Hello,
I have a metrics reporting sheet that relies on cross sheet reference formula to count rows from a formula column in a source sheet (let's call it Sheet A) that refreshes with data via data shuttle (set to 'Replace all target sheet rows with the data from the input file') once per day at 8 AM UTC (I am in PST).
One formula I have in the metrics reporting sheet cell is as follows:
=IF(TODAY() >= DATE(2026, 3, 1), IF(COUNTIF({Sheet A}, "ON TIME") + COUNTIF({Sheet A}, "CLOSED LATE") + COUNTIF({Sheet A}, "LATE") = 0, "#N/A", IFERROR(COUNTIF({Sheet A}, "ON TIME") / (COUNTIF({Sheet A}, "CLOSED LATE") + COUNTIF({Sheet A}, "ON TIME") + COUNTIF({Sheet A}, "LATE")), "#N/A")), "")
I understand why the cell with that formula would flip from #N/A → 100% as the data refreshes (Sheet A empties) and it is recalculated (Sheet A is populated), but why would that particular step break & stop at #N/A like it did on April 8th, 2026 if the data shuttle ran without issues?
Screenshot of cell history for reference: