I am writing a parts inventory database for my workplace. I have it
mostly working, but the reordering report isn't quite right. I want
the report to show me parts that need to be ordered. The query I'm
using in the report to generate this number is:
UnitsNeeded:
Sum(nz([ReorderLevel])-(nz([UnitsOrdered])-nz([UnitsRemovedFro mInventory])))
with a ">0" filter to limit the report to only parts I need to order.
This is, essentially, subtracting units on hand from the reorder level.
This works great for most of my parts, but for some, it gives me
wildly inaccurate numbers. Sorry for the poor formatting, but I don't
know how else to explain what's happening.
Part Number Reorder
Level SumOfUnitsOrder ed SumOfUnitsRecei ved SumOfUnitsRemov edFromInventory UnitsOnOrder UnitsNeeded UnitsInStock
128G03706 4 3 3 0 0 5 3
128H0922 1 2 2 1 0 4 1
144C1024590 4 8 8 4 0 12 4
25B7507350 30 30 30 0 0 60 30
356D966551 3 3 3 2 0 11 1
388D981256 2 3 3 0 0 3 3
As I said, I am primarily concerned w/ the UnitsNeeded column and these
numbers just don't make sense to me. Any suggestions? I can provide
more information if needed.
TIA
mostly working, but the reordering report isn't quite right. I want
the report to show me parts that need to be ordered. The query I'm
using in the report to generate this number is:
UnitsNeeded:
Sum(nz([ReorderLevel])-(nz([UnitsOrdered])-nz([UnitsRemovedFro mInventory])))
with a ">0" filter to limit the report to only parts I need to order.
This is, essentially, subtracting units on hand from the reorder level.
This works great for most of my parts, but for some, it gives me
wildly inaccurate numbers. Sorry for the poor formatting, but I don't
know how else to explain what's happening.
Part Number Reorder
Level SumOfUnitsOrder ed SumOfUnitsRecei ved SumOfUnitsRemov edFromInventory UnitsOnOrder UnitsNeeded UnitsInStock
128G03706 4 3 3 0 0 5 3
128H0922 1 2 2 1 0 4 1
144C1024590 4 8 8 4 0 12 4
25B7507350 30 30 30 0 0 60 30
356D966551 3 3 3 2 0 11 1
388D981256 2 3 3 0 0 3 3
As I said, I am primarily concerned w/ the UnitsNeeded column and these
numbers just don't make sense to me. Any suggestions? I can provide
more information if needed.
TIA
Comment