View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson Dave Peterson is offline
external usenet poster
 
Posts: 35,218
Default Formula to add up numbers but there are negatives

Do you want to ignore the negative values or ignore the negative sign?

If you want to just add the positive numbers:
=SumIf(a1:a10,""&0)

If you want to add all the numbers, but ignore the sign:
=sumproduct(abs(a1:a10))

Noodlenix wrote:

Hi,
I want a formula that will just add up the total numbers and disregard the
negatives, is there a true value formula?


--

Dave Peterson