Could anyone in the Forum show how to caluculate percent change with both positive and negative numbers? The simple ((B2-A2)/A2)*100 does not compute properly with negative numbers.
Suggestions?
Thanks,
Art
Suggestions?
Thanks,
Art
This should be exhaustive (addresses all percent changes):
=IF(AND(I2<=0,G2>=0),(G2-I2)/ABS(I2),IF(AND(I2<=0,I2<=G2),(ABS(G2)-ABS(I2))/(I2),IF(AND(I2>=0,G2<=0),(G2-I2)/I2,IF(AND(I2>=0,G2>=0),(G2-I2)/I2,IF(AND(I2<=0,I2>=G2),(ABS(G2)-ABS(I2))/(I2))))))
Where I2 = previous period & G2 = current period