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

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
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,214,864
Messages
6,121,984
Members
449,058
Latest member
oculus

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