I have a COUNTIFS formula that works when looking at a single column, however when I expand the formula to include a full range of columns (37), I receive an Incorrect Argument Set error.
The formula below looks at a column and essentially counts all values as long as it is not blank. It also compares it to a date column on the sheet and counts any matches for the MAX date (not greater than today). It returns the correct count. **This is a sheet summary formula and the bold value below refers to a field within the summary that calculates the MAX date**
=COUNTIFS(BIA:BIA, OR(CONTAINS("Pass", @cell), CONTAINS("Fail", @cell), CONTAINS("N/A", @cell)), [Audit Date]:[Audit Date], [Audit Date]#)
However, this formula gives me an error. I've tried the formula many different ways and received various errors.
=COUNTIFS(BIA:[Wave #], OR(CONTAINS("Pass", @cell), CONTAINS("Fail", @cell), CONTAINS("N/A", @cell)), [Audit Date]:[Audit Date], [Audit Date]#)
I'm sure I'm writing it wrong, but I can't figure it out.