COUNTIFS - Values in Multiple Columns and the Date is this month

Options

I'm trying to calculate the number of cells in a multi column range that match a value in a cell and where the date is greater than or equal to the first of this month.


Source Data

Date1 C1 C2 C3

1/10/21 A B

1/11/21 A


New Sheet

Value

A

B


=COUNTIFS({SourceC1-C2}, HAS(@cell, [Value]@row))

------This will give me the total count with that value.

=COUNTIFS({Date1}, AND((IFERROR(MONTH(@cell), 0) = (MONTH(TODAY()))),(IFERROR(YEAR(@cell), 0) = (MONTH(TODAY())))

-----This will give me the total count of those dates.


=COUNTIFS({SourceC1-C2}, HAS(@cell, [Value]@row),{Date1}, AND((IFERROR(MONTH(@cell), 0) = (MONTH(TODAY()))),(IFERROR(YEAR(@cell), 0) = (MONTH(TODAY())))

-----This returns #INCORRECT ARGUMENT SET

-------If Value is 'A' I want 2. If Value is 'B', I want 1.

Best Answer

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!