sumproduct multiple criteria ignore error

BYEOW1985

New Member
Joined
Jun 6, 2014
Messages
2
Hello,

I have the following two columns in A1:B4 (customer # followed by percentage)

1 0.5
2 0.9
3 0.8
4 #DIV/0!

In column D i have a list of the customer #s. In column E i try to identify if the customer in column D have a percentage >=.8.

I am using the below formula, but getting a #DIV/0! error due to the error in cell B4, which i am not allowed to change using an iferror formula.

=SUMPRODUCT(--(A1:A4=D2),--(B1:B4>=0.8))

Is there a way to get around this using sumproduct or any other method to determine if the customer in D has a percentage >= 80%?

Thanks!
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
This somewhat messy approach tests okay.

{=COUNT(IF(ISERROR(B1:B4)=FALSE,IF((A1:A4=D2)*(B1:B4>0.8),A1:A4)))}

Array formula: so hit Ctrl+Shift+Enter to get the brackets.
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,812
Members
449,048
Latest member
greyangel23

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