Is there a way to sum a row of cells up, but if a cell in the row is blank then add the cell on the left side of the blank cell two times?
suppose your data is in A1:K1
Add any dummy text in cell next to it L1 (which can be a hidden column), thereafter add this formula in the cell next to it M1
L1
M1
=SUM(A1:K1, SUMPRODUCT((A1:K1)*ISBLANK(B1:L1)))
You'll get your results
548k questions
547k answers
4 comments
86.3k users