G
Guest
How do I change the cells in a column to absolute values then add them up in
one formula or function?
one formula or function?
Mike H said:Maybe:-
=SUM(ABS(A1:A20))
enter with Ctrl+Shift+enter
Mike
Dave Peterson said:You can't change the value in a cell using a formula.
But you can sum the absolute values of a range:
=SUMPRODUCT(ABS(A1:A10))
Adjust the range to match, but you can't use the whole column
until xl2007.
RagDyer said:Probably easier then a helper column is to simply remove one
row:
=SUM(ABS(A1:A65535))
Array entered.
Unless, of course, if you're in XL07.