Forum Discussion
papajohn
Apr 24, 2020Copper Contributor
I want to only add up the negative numbers in a column, not the positive ones.
In lieu of using double entry bookkeeping, I have my finances in Excel columns. I enter positive numbers for the deposits and negative numbers when I spend. In addition to the total in the bottom cell of each column, I want to show a expenditure total in a cell below that. Can't figure out how to just add up the negative amounts in a column. Please advise. John
3 Replies
- SergeiBaklanDiamond Contributor
John, in general it's better to have two columns for such purposes. But if in one, you may sum as
= -SUMIF(B:B,"<0")
or which range do you use.
- papajohnCopper Contributor
Thanks very much. That is exactly what I needed.
- SergeiBaklanDiamond Contributor
papajohn , you are welcome