I'm struggling to pull a particular formula from my data source sheet into my metrics sheet.
My criteria is to Count If:
- Submission Request is "Manager Change (Talent Only)
- Talent columns #1-10 are not blank
- Submitted Date is between August 1 and August 31
I've tried several things. The last effort being the below formula:
=COUNTIFS({Submission Type}, Classification@row, {Talent 1}, NOT(ISBLANK(@cell)), {Talent 2}, NOT(ISBLANK(@cell)), {Talent 3}, NOT(ISBLANK(@cell)), {Talent 4}, NOT(ISBLANK(@cell)), {Talent 5}, NOT(ISBLANK(@cell)), {Talent 6}, NOT(ISBLANK(@cell)), {Date Submitted}, AND(@cell >= DATE(2022, 12, 1), @cell <= DATE(2022, 11, 31)))
However, everything I've tried is returning either an error message or the number 0 - neither of what I want. Could anybody provide assistance? Thank you in advance!