I am working with two sheets. "Payment Tracker" and "Job Tracker".
Payment Tracker:
Auto: Auto-Number Column - No formatting
Row: =MATCH(Auto@row, Auto:Auto, 0)
Invoice Number: Primary Column - Manual Entry
Invoice Amount: Text/number column
=INDEX({Job Tracker Invoice Amount}, MATCH([Invoice Number]@row, {Job Tracker Invoice Number}, 0))
Payment Date: Date column - Manual Entry
Payment Amount: Text/number column formatted for USD - Manual Entry
Outstanding Balance: Text/number column formatted for USD
=[Invoice Amount]@row - SUMIFS([Payment Amount]:[Payment Amount], [Invoice Amount]:[Invoice Amount], [Invoice Amount]@row, Row:Row, @cell >= Row@row)
.
.
Job Tracker:
Invoice Number: Auto-number column with 0000 fill
Final Payment Received On: Date Column
=INDEX(COLLECT({Payment Tracker Payment Date}, {Payment Tracker Invoice Number}, [Invoice Number]@row, {Payment Tracker Outstanding Balance}, @cell = 0), 1)
Payment Amount: Text/number Column formatted for USD
=SUMIFS({Payment Tracker Payment Amount}, {Payment Tracker Invoice Number}, [Invoice Number]@row)
.
.
Goal: Pull date from "Payment Tracker" where Invoice Number matches and Outstanding balance is $0.00.
.
I have been able to determine that the issue with the formula in the "Job Tracker" sheet's [Final Payment Received On] column is here:
{Payment Tracker Invoice Number}, [Invoice Number]@row
What I don't understand is why that section works just fine in the [Payment Amount] column's SUMIFS, but throws an error when trying to pull the date in the COLLECT function. If I remove that section, the formula works fine. If I leave that as the only range/criteria then it continues with the error.
I have already tried logging out, clearing cookies and cache, then logging back in with no change. I have also tried other browsers with no success.
Does anyone have any ideas/suggestions? I don't want to save the sheet as new because I have the current form linked to an active website and would prefer to be able to leave the website alone if possible.
Just not sure why that range/criteria set would work in one formula and not the other within the same sheet...