Hi Annotorr,
Please use the below formula and let me know whether it's working or not.
=IF(IFERROR(B3/C3,"")="","0","")
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am creating a spreadsheet for others to copy and use. The formula in column D is: =B3/C3 with the answer set as a percentage. Of course, as you can’t divide by 0, it brings up the #DIVE/0! error. I have tried to wrap it in the IFERROR as such: ‘=IFERROR(B5/C5,””) but, rather than showing as 0, it shows this calculation. What would be the solution? TIA.
Hi Annotorr,
Please use the below formula and let me know whether it's working or not.
=IF(IFERROR(B3/C3,"")="","0","")
Use WHEN to test the cell on 0, like
=WHEN(C5=0,0,B5/C5)
Thanks so much, @Olaf Helper and @Munir Ahamed for your answers. The formula still shows up rather than the answer as 0. See image. Thanks for your time and expertise. :)
@Olaf Helper and @Munir Ahamed , @Viorel I have figured it out. I am in South Africa, and for some odd reason, here, we use the semi-colon instead of the comma - which causes problems with the .csv files uploaded to out-of-country platforms!! So I replaced the commas with ; and added the 0 between the "" and it works!! Thanks so much for all of your time. I so appreciate it. :)