Hi,
Not clear to me, don't see the issue, can you share the workbook and tell us what is wrong?
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm trying to exclude a value from a summation if a corresponding value in another column (B6) is a Null String (=""). The following formula works fine if the corresponding value is BLANK:
It does not work if the corresponding value (in B6) is the Null String (=""):
Can anyone tell me how to change the criteria in my SUMIFS formula to correctly handle this case?
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.
Hi,
Not clear to me, don't see the issue, can you share the workbook and tell us what is wrong?
Hi,
Try this
=SUMPRODUCT((ISNUMBER(B4:B8))*(A4:A8))
Hope this helps.
You may try,
=SUMIFS(B4:B8,C4:C8,"<>*")