View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein Rick Rothstein is offline
external usenet poster
 
Posts: 5,934
Default sum of absolute value of each cell of a column..

Why are you using the Volatile INDIRECT function in that formula? This
formula will do the same thing...

=SUMPRODUCT(ABS(A1:A9))

--
Rick (MVP - Excel)


"pls123" wrote in message
...
tx don i found it..
=SUMPRODUCT(ABS(INDIRECT("A1:A9")))

sumproduct was what i missed !!!
good holiday !!




"Don Guillett" wrote:

Is this what you want
=SUMPRODUCT((ABS(B3:B9)))

where e8 has b3:b9
=SUMPRODUCT((ABS(INDIRECT(E8))))
--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"pls123" wrote in message
...
hi all !!
i try in workbook function, and i try in vbe but i can't do it by
myself...

i need the sum of the absolute value of each cell in range L2:L6..
if you can do it in workbook function ,please add a INDIRECT in your
fornula, because it is a range that has occasional shift.
txx !!
paolo