marilynfebruary
New Member
- Joined
- Aug 20, 2011
- Messages
- 13
Hi,
I've compiled a variance spreadsheet to track the changes from one month to another.
I'm trying to express these changes as a %, where there's no change, it should return 0% change.
But where there is a value in the variance spreadsheet which divides by zero in the previous month, the answer shows "#DIV/0". How do I express this as a 100% change?
=IF(VLOOKUP($C4,'Aug Variances'!$C:$AC,F$1,0)=0,0,VLOOKUP($C4,'Aug Variances'!$C:$AC,F$1,0)/VLOOKUP($C4,'July Demand Master'!$C:$AC,F$1,0))
I've compiled a variance spreadsheet to track the changes from one month to another.
I'm trying to express these changes as a %, where there's no change, it should return 0% change.
But where there is a value in the variance spreadsheet which divides by zero in the previous month, the answer shows "#DIV/0". How do I express this as a 100% change?
=IF(VLOOKUP($C4,'Aug Variances'!$C:$AC,F$1,0)=0,0,VLOOKUP($C4,'Aug Variances'!$C:$AC,F$1,0)/VLOOKUP($C4,'July Demand Master'!$C:$AC,F$1,0))