Creating a formula to find a breakeven point

excelfriend

New Member
Joined
Feb 22, 2022
Messages
2
Office Version
  1. 2021
Platform
  1. MacOS
I want to create a formula that will tell me the breakeven point. For example:

I buy an item for $10.
What is the minimum price I can sell the same item if I am taxed 10% on the selling price.

So in this example it would be $11.11 since 10% of that is $1.11 which is $11.11 - $1.11 = $10.

But I'm unable to figure out how I can make a formula for this.
Ideally I can input one cell with the Buy item price.
One cell with the % of the tax.
And then the answer (minimum price) is put in a new clel.

Thank you so much. Hope I am clear, I am new to this forum.
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
A1 = 10.00
B1 = A1*.1
C1 = A1*1.1
These would be the basic formulas to get what you want...although your 10% on $10 will only be $11 rather than 11.11.
 
Upvote 0
The following formula column .. C column in this case, will work for 10%

Book1
ABCDEFGHI
1Original CostSelling TaxBreak Even Selling PriceBreak Even Selling PriceSelling TaxOriginal Cost
2$10.0010.00%$11.11$11.1110.00%$10.00
3$15.0010.00%$16.67$16.6710.00%$15.00
4$20.0010.00%$22.22$22.2210.00%$20.00
5
POS
Cell Formulas
RangeFormula
F2:F4F2=C2
G2:G4G2=B2
H2:H4H2=F2 - (F2*G2)
C2:C4C2= A2*(1+B2)+(A2*(1+B2)*B2 + A2) * B2/(B2*100)
 
Upvote 0
You can simplify that with a little algebra:

Book1 (version 1).xlsb
ABCD
1Original CostBreak Even PriceTax
2$ 10.00$ 11.1110%
3$ 15.00$ 16.67
4$ 20.00$ 22.22
Sheet22
Cell Formulas
RangeFormula
B2:B4B2=A2/(1-D$2)

That is a far better solution than what I came up with for a few reasons that I notice:
1) Much simpler formula
2) It works if the percentage is changed.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,557
Members
449,088
Latest member
davidcom

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