SUMPRODUCT function

Randerson

New Member
Joined
Aug 4, 2014
Messages
3
Hello everybody,

I have the following problem:
I have a big data base printed in one spreadsheet from the company that I work. In it there are many informations organized in columns as geographic sector, local of work, work priority, specialist required, and others.
The colunm specialist required has the names: MAJUST01, MAJUST02, MAJUST03, ..., MAJUST10 from the specialty adustment, MSOLDA01, MSOLDA02, ..., MSOLDA10 from the specialty welding, and it goes with the same parttern on 8 more specialty.

Using multiple criteria I want, for example, to count all performed work from one geographic sector, from one priority and from one specialty. The problem in that there are 10 different names for one specialty, as It is written above.

One workmate suggest the following solution.


step 1: create a shape column range for which specialty and filled them with the different names related with them. For example.


AB...
1WeldingAdustment...
2MSOLDA01MAJUST01...
3MSOLDA02MAJUST02...
............
11MSOLDA10MAJUST10...

<tbody>
</tbody>

Step 2: step2: use the SUMPRODUCT function associated with SUMIFS function as following:
Code:
SUMPRODUCT(COUNTIFS(COLUMN_Geo_Work;"1";COLUMN_Prio_Work;"P2";COLUMN_Specialty;Range("A2:A11"))
Obs.: The size of the specialty columns is different to the size of the columns from the data base (it is much smaller)

Well, this code returns exactly what I want. The number of performed work from geographyc sector 1 from priority P2, and from welding specialty.

I tried this code:
Code:
SUMPRODUCT((COLUMN_Geo_Work="1")*(COLUMN_Prio_Work="P2")*(COLUMN_Specialty=Range("A2:A11"))

But it didn't work because, as I said before, the size on the specialty columns is different to the size of the columns from the data base.

So my question is: How does it work??? I know the basis of SUMPRODUCT and COUNTIFS but I can't understand what is happening here. I mean, how the first code is working and why my code is working if the first one it is.

Sorry for this long text.

since I already appreciate the help
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
In your first one the sumproduct is just adding the counts of the countifs formula when A2 is used, A3 is used all the way up to A11. The ranges used for the criteria ranges need to be the same length.

In the second one you are creating 3 arrays and multiplying them together then adding the products (A2*B2*C2 + A3*B3*C3 etc etc). For this reason the arrays need to be the same length.
 
Upvote 0
In your first one the sumproduct is just adding the counts of the countifs formula when A2 is used, A3 is used all the way up to A11. The ranges used for the criteria ranges need to be the same length.

I had thought in this answer. Well, thinking that the COUNTIFS would return an array, I had the idea to change the SUMPRODUCT just for SUM. With this I change was expecting to achieve the same result but It wasn't. In my conception, with the COUNTIFS had returned an array the function SUM should work.
 
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,228
Members
448,951
Latest member
jennlynn

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