Count If Row Meets Multiple Criteria
Explanation In this example, the goal is to count orders (rows) where the state is Texas (“TX”), the amount is greater than $100, and the month is March. In this case, we can’t use COUNTIFS , because COUNTIFS is a range-based function and it won’t accept a calculation for a range argument, which we need to determine the month. We could optionally add a helper column that uses the MONTH function to extract the month, then use COUNTIFS, but a better option is to use the SUMPRODUCT function with Boolean logic ....