#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Formulas

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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Formulas

=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.

"Rspiva" wrote:

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

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Formulas

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
on order so it would then force me to order the Vendor Min so as to satisfy
the requirement and leave a balance of 12 when the required has been used.

"BoniM" wrote:

=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.

"Rspiva" wrote:

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

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Formulas

=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.

"Rspiva" wrote:

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
on order so it would then force me to order the Vendor Min so as to satisfy
the requirement and leave a balance of 12 when the required has been used.

"BoniM" wrote:

=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.

"Rspiva" wrote:

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

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Formulas

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

"BoniM" wrote:

=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.

"Rspiva" wrote:

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
on order so it would then force me to order the Vendor Min so as to satisfy
the requirement and leave a balance of 12 when the required has been used.

"BoniM" wrote:

=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.

"Rspiva" wrote:

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



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 353
Default Formulas

=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?

"Rspiva" wrote:

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

"BoniM" wrote:

=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.

"Rspiva" wrote:

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
on order so it would then force me to order the Vendor Min so as to satisfy
the requirement and leave a balance of 12 when the required has been used.

"BoniM" wrote:

=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.

"Rspiva" wrote:

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

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Formulas

PERFECT-That works like a charm!!!!!!
Thanks so much for bearing with me.

"BoniM" wrote:

=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?

"Rspiva" wrote:

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

"BoniM" wrote:

=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.

"Rspiva" wrote:

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
on order so it would then force me to order the Vendor Min so as to satisfy
the requirement and leave a balance of 12 when the required has been used.

"BoniM" wrote:

=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.

"Rspiva" wrote:

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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
CELLS NOT CALC FORMULAS - VALUES STAY SME FORMULAS CORRECT?? HELP Sherberg Excel Worksheet Functions 4 September 11th 07 01:34 AM
automatically copy formulas down columns or copy formulas all the HowlingBlue Excel Worksheet Functions 1 March 16th 07 11:11 PM
Formulas not evaluated, Formulas treated as strings Bob Sullentrup Excel Discussion (Misc queries) 0 November 27th 06 08:01 PM
formulas for changing formulas? creativeops Excel Discussion (Misc queries) 4 January 26th 06 03:07 AM
Formulas letto115 Excel Discussion (Misc queries) 3 August 25th 05 04:11 PM


All times are GMT +1. The time now is 04:32 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"