Hello,
I have a situation where I have two working COUNTIF functions, but when I try to combine them into criteria for a COUNTIFS function, I get the error "INCORRECT ARGUMENT SET". Trying to figure out why the criteria don't work when combined into a single function. I want to count the rows where both criteria are met. The references are all in the same sheet.
Here are my working COUNTIF formulas:
=COUNTIF([Carrots]:[Potatoes], FIND([Entry]@row, @cell) > 0)
=COUNTIF(Date:Date, [Search Date]@row)
And here is the failing COUNTIFS formula:
=COUNTIFS(Date:Date, [Search Date]@row, [Carrots]:[Potatoes], FIND([Entry]@row, @cell) > 0)
Help is appreciated, thanks in advance!