Formulas

G

Guest

This has to do with my purchased items reorder sheet where I have a column
that is populated with the required amount of purchased items needed to build
the amount of trailers from the schedule. Another column has the vendors
required minimum that we have to order so as to keep a certain price level.
Then I have the columns for my inventory levels and quantities of outstanding
purchase orders. My dilemma is in my “Re Order†column where I'm subtracting
my inventory and outstanding quantities from the required pcs needed in which
trying to also set it up so it takes into account the minimum required by the
vendor so it will only populate when it gets equal to or above the minimum
required quantities
 
G

Guest

=IF(A2-B2-C2>=D2,A2-B2-C2,"")
Where A2 is the required inventory level, B2 is the on hand, C2 is
outstanding, and D2 is the desired minimum order. Will return a blank until
the number needed to come up to inventory is greater than or equal to the
desired minimum order.
 
G

Guest

Required Inventory On order Low Vendor Minimum Re order

24 6 0 30 30
When I did the formula as you showed below, my reorder cell is blank. The
formula should return the Vendor Minimum of 30 since I have 6 on hand and 0
 
G

Guest

=IF(A2-B2-C2>=E2,A2-B2-C2,E2)

I think this is what you meant, it will fill with vendor minimum unless
exceeded by required minus on hand and on order. I'm sorry, I misunderstood
"it takes into account the minimum required by the vendor so it will only
populate when it gets equal to or above the minimum required quantities". I
thought you meant you wanted it blank until it met the minimum instead of you
wanted the vendor minimum until then.
 
G

Guest

That worked pretty good until I tested it by placing 12 in inventory and
placed an order for 30 in the order column and the re order column tells me
to order 30 more. You probably didnt misunderstand me, its probably how im
asking the question....sorry
 
G

Guest

=IF(A2-B2-C2<=0, "",IF(A2-B2-C2>=E2,A2-B2-C2,E2))
:) We can keep trying...
This one will leave it blank if the on hand and on order is qreater than
required, then do all the other stuff from before. Better?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top