G Guest May 3, 2007 #1 I want a percent formula when it equals zero to put a zero in the cell. How do I allow this? Right now I'm getting "#DIV/0!" ?
I want a percent formula when it equals zero to put a zero in the cell. How do I allow this? Right now I'm getting "#DIV/0!" ?
G Guest May 3, 2007 #2 you need to use the iserror function. EG =IF(ISERROR(a1/a2*100)=TRUE,0,a1/a2*100) ie if the answer is #n/a then it will show 0 otherwise it will show the percentage
you need to use the iserror function. EG =IF(ISERROR(a1/a2*100)=TRUE,0,a1/a2*100) ie if the answer is #n/a then it will show 0 otherwise it will show the percentage