Price points invoice

Reec0n

New Member
Joined
Jan 30, 2017
Messages
20
Hi all,

I’m building an invoice and for two products.

If someone buys 1 - 30 of Product 1 it’s £300 per product.

31 - 60 its £250.

60+ it’s £200.

Is there a way to automate the sum total amount to reflect the discounted rates.

Ie. Qty 40 should equal 10,000

Any help would be greatly appreciated.

Thanks in advance.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
This is best achieved using a price table and function VLOOKUP. Like this:

ABC
1hurdleprice
21300
331250
461200
5
6purchase40
7cost10000

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet21

Worksheet Formulas
CellFormula
C7=VLOOKUP(C6,A2:B4,2,1)*C6

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0
This is best achieved using a price table and function VLOOKUP. Like this:

ABC
1hurdleprice
21300
331250
461200
5
6purchase40
7cost10000

<tbody>
</tbody>
Sheet21

Worksheet Formulas
CellFormula
C7=VLOOKUP(C6,A2:B4,2,1)*C6

<tbody>
</tbody>

<tbody>
</tbody>

Thanks this works great.

Question 2: I am invoicing for two products so the first price points are for product one only. How do I associate product1 with this price point and do the same for product2?

I've managed all the basics of VAT% and single price as well. I will post the full sheet for anyone else's invoicing needs once complete.

Again any help is greatly appreciated.

Thanks
 
Upvote 0
Well, I don't know what a 'price point' is...sounds like slang.

I think what you're after involves simply adding a column for Product2 to the price table or creating a second price table for Product2 if it has different hurdles. Here is an algorithm for the simpler case. Copy D19 downwards.

ABCD
12Prices
13hurdleP1P2
1413001100
1531250400
1661200100
17
18Examplepurchasecost
19P14010000
20P2757500
21P222200
22P161800
23P25220800

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet21

Worksheet Formulas
CellFormula
D19=VLOOKUP(C19,$A$14:$C$16,MATCH(B19,$A$13:$C$13,0),1)*C19

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,197
Messages
6,123,581
Members
449,108
Latest member
rache47

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