Help required - SUMPRODUCT with wildcard search, multiple criteria on different sheets

cageorge95

New Member
Joined
May 20, 2022
Messages
2
Office Version
  1. 365
Platform
  1. Windows
To set the scene, I have an order report that has every order placed on the ordering system for every project ever. I want to add up the sum of the 'quantity ordered' and the 'price per unit' for a specific item and a specific site. Therefore, I need to only add the sum of 'quantity ordered' and 'price per unit' for the a specific site and item.

The equation I came up with is:

=SUMPRODUCT(('Orders (general)'!$F:$F="SCN1060")*(--(ISNUMBER(FIND($A27,'Orders (general)'!$G:$G))))*('Orders (general)'!$J:$J)*('Orders (general)'!$M:$M))

'Orders (general)' is the order sheet that is separate from the sheet I am doing this calculation on.

('Orders (general)'!$F:$F="SCN1060") is the the term to search the item code column for item SCN1060.

(--(ISNUMBER(FIND($A27,'Orders (general)'!$G:$G)))) is the term to wildcard search the 'project title' column for the project number (the report generates project titles in the format "[Project number] - [Project location]").

('Orders (general)'!$J:$J) is the quantity ordered column.

('Orders (general)'!$M:$M)) is the price per unit column.

My equation results in '#VALUE!'.

Can anyone tell me where I'm going wrong?
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Yes, you want the logical checks to determine the correct row to be one argument and the other items to multiply together to be separate arguments:
Excel Formula:
=SUMPRODUCT(('Orders (general)'!$F:$F="SCN1060")*(ISNUMBER(FIND($A27,'Orders (general)'!$G:$G))),('Orders (general)'!$J:$J),('Orders (general)'!$M:$M))
And because the ISNUMBER function is multiplied by another array, you do not need to coerce it to 1's and 0's with the double unary operator...you can if desired, but that will happen automatically when multiplied by the other array. The product of those two arrays determines the correct row. As a side note, I would recommend changing the full column references to something conveniently large but not the full column to improve performance...perhaps e.g., $F2:$F1000 or something that covers your entire data set.
 
Last edited:
Upvote 0
Solution
Yes, you want the logical checks to determine the correct row to be one argument and the other items to multiply together to be separate arguments:
Excel Formula:
=SUMPRODUCT(('Orders (general)'!$F:$F="SCN1060")*(ISNUMBER(FIND($A27,'Orders (general)'!$G:$G))),('Orders (general)'!$J:$J),('Orders (general)'!$M:$M))
And because the ISNUMBER function is multiplied by another array, you do not need to coerce it to 1's and 0's with the double unary operator...you can if desired, but that will happen automatically when multiplied by the other array. The product of those two arrays determines the correct row. As a side note, I would recommend changing the full column references to something conveniently large but not the full column to improve performance...perhaps e.g., $F2:$F1000 or something that covers your entire data set.
This worked a treat. Very informative, thank you!
 
Upvote 0

Forum statistics

Threads
1,214,638
Messages
6,120,674
Members
448,977
Latest member
moonlight6

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