You cannot specify a condition that way.
Try this:
=SUM($B$2:$B$89*(TEXT($A$2:$A$89, "mmm")=G2))
This can be filled down.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Using the SUMIF function, I want to evaluate the Month (A2:A89) column and get the sum of the Inbound calls(B2:B89) in a given month that met the criteria, but it keeps returning zero.
This is the formula i tried.
=SUMIF(A2:A89, Month(A2)=1, B2:B89)
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
You cannot specify a condition that way.
Try this:
=SUM($B$2:$B$89*(TEXT($A$2:$A$89, "mmm")=G2))
This can be filled down.
Thank you very much, Andreas. This is very helpful.