I am struggling with a formula that is trying to count the Record Type entries in the reference sheet that meet the following conditions:
Record Type = "TEST"
Deadline is less than TODAY
Assigned ISBLANK
I tried many variations of the following formula but it keeps erroring out with INVALID OPERATION. When I parse it out, it works until I add the less than today criteria at the end.
=COUNTIFS({Record Type}, {Record Type} = "TEST", {Assigned}, ISBLANK(@cell), {Deadline} < TODAY())
Note: all conditions are in the same reference sheet and I confirmed that the {Deadline} column is a Date type.
TIA!