Sumifs

ErickaTW

New Member
Joined
Mar 21, 2019
Messages
2
[TABLE="class: grid, width: 15, align: center"]
<tbody>[TR]
[TD][/TD]
[TD]WW12
[/TD]
[TD]WW13
[/TD]
[TD]WW14
[/TD]
[TD]WW15
[/TD]
[TD]WW16
[/TD]
[TD]WW17
[/TD]
[TD]WW18
[/TD]
[TD]WW19
[/TD]
[/TR]
[TR]
[TD]Model A
[/TD]
[TD]10
[/TD]
[TD]15
[/TD]
[TD]5
[/TD]
[TD]20
[/TD]
[TD]15
[/TD]
[TD]50
[/TD]
[TD]10
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]Model B
[/TD]
[TD]20
[/TD]
[TD]5
[/TD]
[TD]5
[/TD]
[TD]20
[/TD]
[TD]15
[/TD]
[TD]10
[/TD]
[TD]15
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]Part 1
[/TD]
[TD]30
[/TD]
[TD]20
[/TD]
[TD]10
[/TD]
[TD]40
[/TD]
[TD]30
[/TD]
[TD]60
[/TD]
[TD]25
[/TD]
[TD]10
[/TD]
[/TR]
[TR]
[TD]Model C
[/TD]
[TD]5
[/TD]
[TD]1
[/TD]
[TD]2
[/TD]
[TD]1
[/TD]
[TD]10
[/TD]
[TD]5
[/TD]
[TD]5
[/TD]
[TD]5
[/TD]
[/TR]
[TR]
[TD]Model D
[/TD]
[TD]5
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[TD]1
[/TD]
[/TR]
[TR]
[TD]Part 2
[/TD]
[TD]10
[/TD]
[TD]2
[/TD]
[TD]3
[/TD]
[TD]2
[/TD]
[TD]11
[/TD]
[TD]6
[/TD]
[TD]6
[/TD]
[TD]6
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Summary
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD]WW12
[/TD]
[TD]WW13
[/TD]
[TD]WW14
[/TD]
[TD]WW15
[/TD]
[TD]WW16
[/TD]
[TD]WW17
[/TD]
[TD]WW18
[/TD]
[TD]WW19
[/TD]
[/TR]
[TR]
[TD]Part1
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Part2
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]







Hello, I am having hard time trying to use SUMIFS I have a table with dates on rows and models on columns with data per date and per part number and I am trying to bring the data to the summary table for instance on WW12 for part 1 the total number would be 100, but I am not sure how to use SUMIFS or even if it is the correct formula to use.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
G'day Ericka,

Unless I am missing something (quite possible), in the example given you don't need to do a new calculation in the summary table as the Part 1 and 2 summary data is already calculated in the main table.

Simply make the summary cell = the corresponding cell in the main table. If the top left cell is A1, then the Part 1 total for WW12 is cell B4 and the part 1 summary for WW12 is cell B11 which only needs =B4 to dynamically reflect the main table data. Part 2 summary data in cell B12 would have =B7

Cheers

shane
 
Upvote 0
Thank you for the replay, but is just an example of a bigger file that I have to update in a regular basis,

Actually the summary table is in a different tab
And the 1st table with the data is going be updated every week, I want to be able just to copy the new data on the raw data and have my summary updated as needed.

I need a sum with two criteria's a) based on product and based on ww (work week)

:)
Any help would be greatly appreciate it
 
Upvote 0
try - I do not know your criteria so this is a guess - SUMIFS(SH1!$A:$A(qty t sum),SH1!$B:$B (wwto look at),"="&SH2!A$1(ww to match),SH1!$C:$C(item),SH2!$A2(item matching))
 
Upvote 0
The different tab makes little difference to excel, it could be in a different workbook and all that changes is a bit of extra information to tell the summary tab cell where to look for the data.

For example, if your data is in a tab called "Raw_Data" and the Summary in a tab called "Summary" and the cell addresses are as I gave them above, all that would change is that the =B4 would now be =Raw_Data!B4 and all that you need to type is the = sign and simply change tabs and click in the target cell then Enter.

I get the idea that you are simply overwriting the existing data in the Model cells for each Part and for each work week, so if the structure is as you have given above, then there is still no need for SUMIFS - a simple SUM of the rows above the Part 1 and Part 2 will do the job and will update automatically into the Summary tab whenever chaged based on the ='s formula above.

Cheers

shane
 
Upvote 0
How About:


Book1
ABCDEFGHI
1WW12WW13WW14WW15WW16WW17WW18WW19
2Model A10155201550105
3Model B2055201510155
4Part 13020104030602510
5Model C512110555
6Model D51111111
7Part 21023211666
Sheet Data



Book1
ABCDEFGHI
1WW12WW13WW14WW15WW16WW17WW18WW19
2Part 13020104030602510
3Part 21023211666
sheet Summary
Cell Formulas
RangeFormula
B2=INDEX(Data!$A$1:$I$7,MATCH($A2,Data!$A$1:$A$7,0),MATCH(B$1,Data!$A$1:$I$1,0))


In the summary sheet, copy the formula to the right and then down.
 
Upvote 0

Forum statistics

Threads
1,223,898
Messages
6,175,274
Members
452,628
Latest member
dd2

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