Help Needed: Match Production to Open Orders

scorpio0077

New Member
Joined
Jul 19, 2009
Messages
3
Hi,
I work for a manufacturing plant where we manufacture one product which is then sold under different names.

The product is made from the same material.

I am looking for a way to match up production to the orders and then subtract the produced quantity from the orders.

Tab 1 - Orders: Column 1 has the items (A1, A2 and A3 are all produced from A), Column 2 has the date when the order has to ship and Column 3 has the ordered volume.

Tab 2 - Production: Column 1 has the raw material, Column 2 has the production date and Column 3 has the amount manufactured.

Any help would be highly appreciated!!

Tab -1: Orders

<tbody>
</tbody>
ItemShip Date Ordered Qty, KG
A-18/22/201216
A-18/23/2012160
A-28/20/201220
A-28/27/201270
A-28/27/2012160
A-28/27/2012160
A-28/27/2012160
A-28/27/201280
A-28/31/201220
A-29/18/201250
A-29/20/2012120
A-29/21/2012160
A-29/26/2012160
A-210/1/201240
A-210/25/2012160
A-210/26/201250
A-210/31/2012160
A-38/23/201263
A-38/24/2012180
A-38/27/2012180
A-38/27/201245
A-39/4/2012180
A-310/12/2012180
A-31/3/2013180
B-18/15/2012120
B-18/15/201296
B-18/16/2012176
B-18/16/2012176
B-18/16/2012104
B-18/17/2012128
B-18/17/2012104
B-18/21/201224
B-18/27/2012128
B-18/29/201224
B-18/31/201216
B-19/6/2012128
B-28/15/2012128
B-28/17/2012128
B-28/28/2012128
B-29/24/2012128

<tbody>
</tbody>


Tab -2: Production

ItemProduction DateQuantity
A8/13/2012140
B8/19/201240
A8/29/2012120
B9/5/201240
A9/10/2012150

<colgroup><col><col><col></colgroup><tbody>
</tbody>
 
Last edited:

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
In table 2 you have only A's and B's is this correct? as you A-1 etc in table 1
 
Upvote 0
Hi, if you use SUMIF you can summarise both the orders and the production. To select all the variants referred too in the order column concatenate "*" with the cell reference containing A or B etc. So if your order data spans A1:C41 and the summary of orders is in G2 use =SUMIF($A$2:$A$41,$F2&"*",$C$2:$C$41), where $F2&"*" looks for anything in the data starting with the character in cell F2 (A or B etc). The summary of production, which I placed in cell H2, is obtained from Sheet 2 with =SUMIF(Sheet2!$A$2:$A$6,Sheet1!F2,Sheet2!$C$2:$C$6).

Hope this helps.
 
Upvote 0

Forum statistics

Threads
1,216,176
Messages
6,129,316
Members
449,501
Latest member
Amriddin

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