Hi folks,
I am currently using this formula, which works fine:
=IFERROR((AVG(COLLECT({#Working Days to Kickoff with KP}, {Verizon Received Date}, AND(@cell <= DATE(2023, 1, 31), @cell >= DATE(2023, 1, 1))))), "")
This gives me the average time we take to kick off our projects from the date we receive our projects from the customer. I am trying to add a second argument filter projects for various TPV (third-party vendors), but I can not seem to get the second argument to work. Here is what I've tried:
=IFERROR(AVG(COLLECT({Working Days to Issue PO}, {Verizon Received Date}, AND(@cell <= DATE(2023, 1, 31), @cell >= DATE(2023, 1, 1)), {TPV Name}, AND(CONTAINS("Opstel", {TPV Name})))))
=IFERROR(AVG(COLLECT({Working Days to Issue PO}, {Verizon Received Date}, AND(@cell <= DATE(2023, 1, 31), @cell >= DATE(2023, 1, 1)), {TPV Name}, CONTAINS(@cell, "Opstel"))))
With each of these, I get "INVALID Arugemt "INCORRECT ARGUMENT SET."
Am making this too difficult. Is there an easier way?