Hello!
I am not a seasoned user and have been unable to find a solve for my function issue.
I have sheet 1 (Request pdf) that is populated by a form. Employees request funds and can have more than 1 entry.
On sheet 2 (allocation pdf), each employee has a set number of funds available.
I want to add all of the $ requested by a specific employee BUT only if 2 other columns have the right values to reflect total $ used
I am using the {BusinessEmail} as the unique identifier on both sheets. I am using {$Column} for the Reimbursement requested on sheet 1. The other 2 conditions on sheet 1 are {RequestColumn} has to be "Reimbursement" and the {StatusColumn} has to be "Processed" to sum all the values to return to the column on Sheet 2 for funds available.
This formula doesn't give me errors but isn't adding the amounts:
=SUM(COLLECT({$Column}, {EmailColumn}, @cell = [Business Email]@row, {StatusColumn}, “Processed”,{RequestColumn}, "Reimbursement Submission (includes VTNE cost)"))
Does my email column need to be text instead of a contact?