I am using the formula to generate a percentage in E7.[indent]
=IF(C7>0,IF(D7>0,D7/C7,””),””)
[/indent] The nested IFs protect me from divide by zero errors if either C7 or D7 are zero (or a negative number – which I need to trap as well). This isn’t elegant, bit of kludge actually. I’m not that familiar with Excel – is there an easier and/or tidier way?