I’m trying to show a percent change for sales figures year over year. In ’02, we had a negative $3K in sales but in ’03 we’re up at$12K. When I try to do a percent increase from ’02 to ’03, I’m receiving a negative number instead of a positive increase. I’ve also included in my equation something that will allow me to get a “0” where the ’02 numbers are “0” so as to not get the DIV/0 error.
Here is my formula:
C17= 12,000
D17= 3,000
=IF(D17,((C17-D17)/D17),”0″)
Currently, my answer gives me approximately -400% which is not right.