Jul 14 2021 08:58 PM
I need help with writing a formula. What I need is an auto sum formula that will total a line of cells with numbers that are both positive and negative numbers, but not adding and subtracting, only totaling the numbers.
Example, 5, 5, -10, 5. the answer would be 25.
Thanks
Jul 15 2021 12:20 AM
With everyone's permission, I would like to add this example to Mr.Detlef Lewin
Jul 15 2021 09:22 AM
For me the formula is
= SUM(ABS(Value₁))
but, for anyone stuck with legacy versions of Excel, it is also possible to use a defined name for the array calculation. The formula is then
= SUM(Absolut)
[without CSE] where 'Absolut' is defined to be
= ABS(Value₁)
Jul 14 2021 09:12 PM
Solution