SOLVED

Formula Error-#DIV/0!

Copper Contributor

We are using this formula in Q7 - =IF(MAX(ABS(1-(K7/G7)),ABS(1-(G7/K7)))<0.1,"PASS","FAIL"), it works great, except: when K7 & G7 don't have amounts in them, we get the #DIV/0! error. Is there a formula we can add to the above to leave Q7 blank until K&G 7 are filled in?

3 Replies
best response confirmed by apinter (Copper Contributor)
Solution

@apinter 

Perhaps

=IFERROR( IF(MAX(ABS(1-(K7/G7)),ABS(1-(G7/K7)))<0.1,"PASS","FAIL"), "" )
It worked! Thank you so much!! 🙂

@apinter , you are welcome

1 best response

Accepted Solutions
best response confirmed by apinter (Copper Contributor)
Solution

@apinter 

Perhaps

=IFERROR( IF(MAX(ABS(1-(K7/G7)),ABS(1-(G7/K7)))<0.1,"PASS","FAIL"), "" )

View solution in original post