Looking for a solution for keeping up with inventory of a part numbers.

mdean32

New Member
Joined
Jan 15, 2019
Messages
22
I'm having trouble figuring out a way to keep subtracting real time inventory (Column D) for part # AA as it continues to show up on a production schedule. Any ideas on a formula considering part AA may show up multiple times on a schedule with 500 other part numbers. Thanks for the help

A B C D
Qty to be produced Part # Raw inv Real time inv
200 AA . 1000 . 1000

900 AA 1000 -100

100 bb 100 . 100

300 cc 200 . 200

400 AA 1000 -500
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Is this what you are looking for:

Code:
=IF(COUNTIF(B$1:B2,B2)=1,C2,C2-SUMIF(B$1:B2,B2,A$1:A2))
 
Upvote 0

Forum statistics

Threads
1,214,875
Messages
6,122,046
Members
449,063
Latest member
ak94

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