stuck with iserror

stuartford

Active Member
Joined
Nov 28, 2002
Messages
419
im using the following formula and need to get rid of the DIV/0
the formula is very simple but i cant get iserror to work on it

sum('sheet 2'!d30:d31)/sheet2 d32*100000

where and how do i put the iserror

cheers stu
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
You don't need ISERROR, you just need to check for 0 in D32.

Perhaps:

Code:
=IF(Sheet2!D32=0,"",SUM(Sheet2!D30:D31)/Sheet2!D32*100000)
 
Upvote 0
you could do
=if(iserror(sum('sheet 2'!d30:d31)/'sheet 2'!d32*100000),"",sum('sheet 2'!d30:d31)/'sheet 2'!d32*100000)

or, =if('sheet 2'!d32=0,"",sum('sheet 2'!d30:d31)/'sheet 2'!d32*100000)
 
Upvote 0

Forum statistics

Threads
1,215,214
Messages
6,123,666
Members
449,114
Latest member
aides

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