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

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
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,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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