Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

SUM of column wheren another column contains BLANK cells I\'m trying to come up

ID: 3562763 • Letter: S

Question

SUM of column wheren another column contains BLANK cells

I'm trying to come up with a formula and need help. Column A has SOME blank fields, and there are numbers in ALL of the fields in column B. I would like a formula to sum ONLY the values in Column B where Column A is blank.

For Example:

Column A = Hardware, Training, (blank), Software, Hardwrarre, Hardwarre, (blank), (blank), Maintenance, Training, Hardware

Column B = 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100

In this scenario, the formula should come up with an answer of 300. How do I do this?????

Explanation / Answer

Try this:

=SUMPRODUCT(--(LEN(A1:A11)=0)*(B1:B11))

HTH :)