Formula for Deliveries!

DanielBellfield

New Member
Joined
Mar 16, 2012
Messages
36
I want to work out a formula that can read a quantity from one cell and work out delievery costs for the items dependant upon the number in that cell providing a dicount for certain numbers:

1 item = 80
2-5 = 50
5-10 = 30
10+ = manual price required.

help?
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
I want to work out a formula that can read a quantity from one cell and work out delievery costs for the items dependant upon the number in that cell providing a dicount for certain numbers:

1 item = 80
2-5 = 50
5-10 = 30
10+ = manual price required.

help?
You need to specifically define "manual price required". Can that be a manual entry in some other cell?

Your levels can be better defined like:

1 = 80
2 - 5 = 50
6 - 10 = 30
11+ = manual price required
 
Upvote 0
Is there no way that a formula can be used to assess which number to use and multiply it via the quanity of items?
Yes, but you need to come up with a specific way to handle items greater than 10.

Let's assume cell A1 is the quantity.

Cell B1 = the multiplier for quantities >10.

Enter this formula in C1:

=A1*IF(A1>10,B1,LOOKUP(A1,{1;2;6},{80;50;30}))
 
Upvote 0
I understand now... Just i wounder whether its possilbe for it to display a message instead like Manual Input Required?
You could but then the user would have to enter the manual input in a different cell.

=IF(A1>=11,"Manual Input Required",A1*LOOKUP(A1,{1;2;6},{80;50;30}))
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

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