#div/0!

ksebring

Board Regular
Joined
Jun 29, 2016
Messages
54
Good morning,

I have a dashboard that refers to multiple workbooks and returns values into my dashboard. I have a cell that refers to a separate workbook sheet that has the value of #DIV/0! and returns on my dashboard as the same.

My cell refers to ='G:\PMO_Status_NEW\[Business_Solutions.xlsm]Client'!$B$44

How can i get my cell to not display #DIV/0! instead display "none"

I tried adding IF statment - didnt work

Any help would be appreciated.

thanks
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Try

=iferror('G:\PMO_Status_NEW\[Business_Solutions.xlsm]Client'!$B$44,"none")
 
Upvote 0
I have a cell that refers to a separate workbook sheet that has the value of #DIV/0! and returns on my dashboard as the same.
Whenever possible, it is always best to try to address the error at the source itself (especially since IFERROR will ignore all errors, so you may not be alerted to other issues that you may have going on).

The #DIV/0! error is returned when you are trying to divide by zero. So, it is usually just a matter of adjusting the formula that originally returns this.
For example, if the formula is like:
Code:
=A1/B1
and the issue is that B1 is zero, you can adjust your formula to account for it by doing something like this:
Code:
=IF(B1<>0,A1/B1,"")
to return a blank
or
Code:
=IF(B1<>0,A1/B1,0)
to return zero.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,550
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top