View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
John C[_2_] John C[_2_] is offline
external usenet poster
 
Posts: 1,358
Default subtraction of negative numbers

Anytime you subtract a negative, you make it a positive. That is not your
error here though.

You have A1(-50) MINUS B1(40), ... -50-40=-90
The result you are requsting is A1+B1, ... -50+40=-10

Hope this helps.

--
John C


"Roger" wrote:

I'm trying to create an equation that, on occation, will result in a
subtraction of a negative, which then results in a larger negative number
than it should be.

So for example:

=sum(A1 - B1)
A1 = -50
B1 = 40

so the results of this equation is -90, but in reality it should be -10.

seems simple but it's confusing the hell out of me.

thanks in advance for the help.
roger