![]() |
how to remove #DIV/0!
Hi Guys,
I am trying to apply division on two cell and sometimes i will have 0 in both cell which will result in a 0 divided by 0 which excel will prompt an error #DIV/0! . Snyone could advice me how can I replace the error message with a 0 instead of #DIV/0!. What i am trying to get is whenever there is a zero divide by a zero the result will show a zero instead of #DIV/0! Thsnk you. regards, kuansheng |
how to remove #DIV/0!
Hi!
One way: =IF(ISERROR(A1/B1),0,A1/B1) Biff "kuansheng" wrote in message oups.com... Hi Guys, I am trying to apply division on two cell and sometimes i will have 0 in both cell which will result in a 0 divided by 0 which excel will prompt an error #DIV/0! . Snyone could advice me how can I replace the error message with a 0 instead of #DIV/0!. What i am trying to get is whenever there is a zero divide by a zero the result will show a zero instead of #DIV/0! Thsnk you. regards, kuansheng |
how to remove #DIV/0!
Thanks Biff. That very helpful...
|
how to remove #DIV/0!
Another way:
=IF(B1=0,0,A1/B1) Hope this helps. Pete |
how to remove #DIV/0!
Thanks Pete. I tried both method they work like a charm. Learn
something new. Thanks |
how to remove #DIV/0!
Biff's method traps all errors and returns a zero instead of the error
message, whereas my method specifically avoids the #DIV/0 error, as you requested. If A1 contained some text, then you would get the error message #VALUE if you used my formula - just different approaches. Pete |
how to remove #DIV/0!
...or... =IF(B1,A1/B1,0) -- daddylonglegs ------------------------------------------------------------------------ daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486 View this thread: http://www.excelforum.com/showthread...hreadid=538716 |
how to remove #DIV/0!
Thanks I have tried both method work great. Million thanks.
kuansheng |
All times are GMT +1. The time now is 04:29 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com