Hello all...
I have a fairly straight forward formula:
=sum((F29-E29)*(C29*D29))
When the resulting answer is negative I'm very happy... but when the
result comes back positive, I need to make it negative... How can I go
about doing this??
Thank you very much!!
Shhhh
GerryGerry - 04 Apr 2008 09:43 GMT
=-ABS(sum((F29-E29)*(C29*D29)))
> Hello all...
>
[quoted text clipped - 8 lines]
> Thank you very much!!
> Shhhh
Pete_UK - 04 Apr 2008 09:44 GMT
You could amend your formula to this:
=-ABS(sum((F29-E29)*(C29*D29)))
Hope this helps.
Pete
> Hello all...
>
[quoted text clipped - 8 lines]
> Thank you very much!!
> Shhhh
Dana DeLouis - 04 Apr 2008 21:36 GMT
> =sum((F29-E29)*(C29*D29))
As a side note, I don't see anything being "Summed."
Did you mean Product?
= -ABS(PRODUCT(C29,D29,F29-E29))

Signature
Dana DeLouis
> Hello all...
>
[quoted text clipped - 8 lines]
> Thank you very much!!
> Shhhh
macropod - 04 Apr 2008 23:06 GMT
Try:
=-ABS((F29-E29)*(C29*D29))
There's no need for 'SUM' in this formula
Cheers

Signature
macropod
[MVP - Microsoft Word]
-------------------------
> Hello all...
>
[quoted text clipped - 8 lines]
> Thank you very much!!
> Shhhh