Incorporating an automatic pricing system

Josh88

New Member
Joined
Sep 7, 2017
Messages
15
Hi,

I have a worksheet with a price system for different amounts of boxes ordered.
Boxes OrderedPrice per box
50-99$12.00
100-199
$11.40
200-299$10.80
300-399$10.20

<tbody>
</tbody>

In a separate worksheet in the same document I have all of my expenses and income forecast. In there I have a cell for the quantity of boxes ordered and the cell next to it stating the price per box.
TitleQuantityPrice per BoxFinal Price
Boxes Ordered85=Quantity*Price per Box

<tbody>
</tbody>

I would like to set a formula that will automatically adjust the price per box in this worksheet as the quantity changes.
How can I do this?

Thank you very much
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Hi, if you can change your lookup table to only have the lower bound quantities then you can use a simple LOOKUP() formula - for example:


Excel 2013/2016
ABCDEFG
1Boxes OrderedPrice per boxTitleQuantityPrice per BoxFinal Price
25012Boxes Ordered85121020
310011.4
420010.8
530010.2
Sheet1
Cell Formulas
RangeFormula
F2=LOOKUP(E2,$A$2:$A$5,$B$2:$B$5)
 
Last edited:
Upvote 0
Thanks FormR. If I do want to maintain the lookup table in a different worksheet, can this still be used with a reference to the other worksheet?
=LOOKUP(E2, 'worksheet 2'!$A$2:$A$5,$B$2:$B$5)
 
Upvote 0
can this still be used with a reference to the other worksheet?
=LOOKUP(E2, 'worksheet 2'!$A$2:$A$5,$B$2:$B$5)

Hi, yes - but you'll also need the sheet reference on the second range; i.e.

=LOOKUP(E2, 'Worksheet 2'!$A$2:$A$5,'Worksheet 2'!$B$2:$B$5)
 
Last edited:
Upvote 0
Hi,
I have recently introduced a new factor into my pricing system and can't quite work out how to automate it. Please help...

I have 3 elements which I am trying to use in the LOOKUP formula. I have quantity, length and per unit price. Here is a table of the information with quantity along the X axis and length down the Y:
2500500010,00015,000
78m0.760.730.710.70
90m
0.840.810.790.78
92m0.850.820.810.80

<tbody>
</tbody>








I would like to have an automated calculation whereby I can build a basic info box containing the number of units required and their length, and the matching unit price is inserted.

Number of Units5000
Length90m
Price per unit

<tbody>
</tbody>






Thank you very much Excel wizards!
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,932
Members
449,480
Latest member
yesitisasport

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