I have this formula:
=IFERROR(IF(OR(O28<0,P28<0),O28+P28,""),"")
Where as O28 is -$2165.80 and P28 is $14195.00 and Q28 returns $12029.30. This needs to return -$12029.30.
I have also tried:
=IFERROR(IF(O28<0, O28+P28,IF(O28>0,O28-P27,0)),0)
neither are returning a negative number. I have...