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 cel...
SergeiBaklan
Apr 24, 2020Diamond 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.
- papajohnApr 24, 2020Copper Contributor
Thanks very much. That is exactly what I needed.
- SergeiBaklanApr 24, 2020Diamond Contributor
papajohn , you are welcome