Multiplier question

limelicious

New Member
Joined
Sep 1, 2013
Messages
1
Hi,

I am trying to create a formula such that for every increase in load by 2000kg, the multiplier would increase by 1.

For example, I have a product that weighs 900kg each but the truck that the product needs to be loaded on has a maximum capacity of 2000kg. So if I need to transport 3 products or 2700kg I would need 2 trucks, etc.

However, I am unsure of how to input the formula if I was to ship 10 products or 9000 kg which would require 5 trucks.

Currently my incomplete formula looks like this:

=IF(U13*L13<=2000,VLOOKUP(D13,A!C:BS,21,FALSE),IF(U13*L13>2000,VLOOKUP(D13,A!C:BS,21,FALSE)*2))


Is there a way of inputing it on excel so that I don't need to type out every increase in 2000kg. i.e. for every increase in 2000kg, increase multiplier by 1.


Thank you!
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
You could look for an solution with Excel solver.

Excel 2007 => data => solver
 
Upvote 0
Welcome to the forum, try:

=VLOOKUP(D13,A!C:BS,21,FALSE)*ROUNDUP(U13*L13/2000,0)
 
Upvote 0

Forum statistics

Threads
1,216,939
Messages
6,133,612
Members
449,820
Latest member
Johno1974

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