|  

» Summing Values Based on the Criteria of a Non-Empty Adjacent Cell

CATEGORY - Summing VERSION - All Microsoft Excel Versions
Problem:

Summing each of the numbers in column A (List 1), provided that the adjacent cell in column B (List 2) is not empty.

Solution 1:

Use the SUMIF function as shown in the following formula:
=SUMIF(B2:B7,"<>",A2:A7)
Explanation:
The SUMIF function adds all the values in column A that have non-empty corresponding cells in column B.

Solution 2:

Use the SUMPRODUCT function as shown in the following formula:
=SUMPRODUCT(A2:A7*(B2:B7<>""))
Screenshot // Summing Values Based on the Criteria of a Non-Empty Adjacent Cell
Summing Values Based on the Criteria of a Non-Empty Adjacent Cell

Rate This Tip
12 34 5
Rating: 3.82     Views: 18086
No comments have been submitted.
Name
Comment Title
Comments