Need help pulling sums by month from data sheet

ejerb

New Member
Joined
Feb 6, 2019
Messages
2
Hello, and thank you for any help!

My existing data sheet columns are "DATE , PART# , GOOD PARTS , REWORK , SCRAP

I am trying to make a new sheet that can pull sums of GOOD PARTS, REWORK, SCRAP by month and part # from my data sheet.

So on my NEW excel file I would like to have multiple sheets representing every month, and have every one of those sheets list every part #.

SO on the new sheet - Next to the part #'s column I will have GOOD PARTS column, REWORK column, SCRAP column -

The question what formula(s) can I use to sum up these columns by month and specific to each part #.

ex. my new sheet for January will show "Part X" and the next 3 columns (Good parts, rework, scrap,) will sum up the Good, rework, and scrap for that month. (pulling data from another sheet)

Please help and thanks!! feel free to ask me to elaborate.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Hi & welcome to MrExcel.
Maybe something like


Excel 2013/2016
ABCDE
1DatePart #GoodReworkScrap
201/01/2019AL1 1HB321
302/01/2019AL1 1WB
403/01/2019AL1 2NF9532
504/01/2019AL1 1HB19910
605/01/2019AL1 1WB3113
706/01/2019AL1 2NF7415
807/01/2019AL10 1DJ37
901/03/2019AL1 1HB216
1002/03/2019AL1 1WB5
1103/03/2019AL1 2NF24154
1204/03/2019AL3 5LE41293
1301/04/2019AL1 1HB82
1402/04/2019AL1 1WB8620
1503/04/2019AL1 2NF532517
Data



Excel 2013/2016
ABCD
101/01/2019
2Part #GoodReworkScrap
3AL1 1HB221111
4AL1 1WB31130
5AL1 2NF1023615
6AL10 1DJ037
7AL3 5LE000
January
Cell Formulas
RangeFormula
B3=SUMPRODUCT((Data!$B$2:$B$15=$A3)*(MONTH(Data!$A$2:$A$15)=MONTH($A$1)),Data!C$2:C$15)
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

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