I want to SUM, but I want the result cell to be empty if the condition does not hold. (There are many examples on the Internet on how to use SUMIF to consider blank cells in the sum range to be 0 in the summation. This is DIFFERENT from what I want.)
Example:
A B C
1 6 2 4
2
3 9 6 3
I want to fill all A-column cells with the same SUM formula, so they sum the row. 2+4=6, 6+3=9, and so on. But I want Cell A2 to be blank. I do not want it to be 0. The reason is, I am doing further calculations on column A (say, AVERAGE), which correctly ignore blank cells in their calculation, whereas they INCLUDE zeros, which would give me undesired results.