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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
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,215,771
Messages
6,126,798
Members
449,337
Latest member
BBV123

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