Sumproduct

gymwrecker

Active Member
Joined
Apr 24, 2002
Messages
396
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Need help with the below formula. I need to SUMPRODUCT three conditions; the formula below is returning me a "0" when in fact I counted "13" items that meet the 0084, OD, and 1A. criteria. What could be wrong or missing?


=SUMPRODUCT(ISNUMBER(SEARCH("*0084*",Master!$A$2:$A$1000)*ISNUMBER(SEARCH("*OD*",Master!$K2:$K1000)*ISNUMBER(SEARCH("*1A.*",Master!$U$2:$U1000))))
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
You weren't closing your ISNUMBER statements:

=SUMPRODUCT(ISNUMBER(SEARCH("*0084*",Master!$A$2:$A$1000))*ISNUMBER(SEARCH("*OD*",Master!$K2:$K1000))*ISNUMBER(SEARCH("*1A.*",Master!$U$2:$U1000)))
 
Upvote 0
Thanks MrKowz! Formula is working perfectly now.

=SUMPRODUCT(ISNUMBER(SEARCH("*0084*",Master!$A$2:$A$1000))*ISNUMBER(SEARCH("*OD*",Master!$K2:$K1000))*ISNUMBER(SEARCH("*1A.*",Master!$U$2:$U$1000)))

I have one more question, on the third array, I have cells that are "blank", how can I fix the formula so it can identify the "blank" cells?
 
Upvote 0

Forum statistics

Threads
1,224,559
Messages
6,179,513
Members
452,921
Latest member
BBQKING

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