How to reverse calculate a number with two percentages

Jumper86

New Member
Joined
Jul 15, 2021
Messages
2
Office Version
  1. 2013
Platform
  1. Windows
I have been working on this problem for quite a while. I assist with the billing for my company. For certain products that we produce, the state that receives the product charges us tax. Our customers agree to pay the tax. We also charge them for fuel.

I am attempting to create a reverse calculator in excel that will take the total charged and break down the two other values. Both values are percentages. The last piece of information is that the fuel percentage and tax percentage changes by state, city, and sometimes even county. So in this calculator, i must have the ability to change the variables. Below is an example.

Base rate $1,000
Tax 7%
Fuel 26.5%
Total from above is $1,353.55

The total is calculated as follows. $1,353.55=(((1000*0.07)+1000)*0.265)+(1000*0.07)+1000
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Welcome to the MrExcel forum!

Your formula can be simplified to the B4 formula, which makes the reverse formula in E2 quite easy:

Book1
ABCDE
1Base Rate$ 1,000.00Total:$ 1,353.55
2Tax7%Base Rate:$ 1,000.00
3Fuel26.50%
4Total$ 1,353.55
Sheet5
Cell Formulas
RangeFormula
E2E2=E1/(B2+1)/(B3+1)
B4B4=B1*(B2+1)*(B3+1)
 
Upvote 0
Welcome to the MrExcel forum!

Your formula can be simplified to the B4 formula, which makes the reverse formula in E2 quite easy:

Book1
ABCDE
1Base Rate$ 1,000.00Total:$ 1,353.55
2Tax7%Base Rate:$ 1,000.00
3Fuel26.50%
4Total$ 1,353.55
Sheet5
Cell Formulas
RangeFormula
E2E2=E1/(B2+1)/(B3+1)
B4B4=B1*(B2+1)*(B3+1)
Thank you so much!!! You have lifted a large weight off my shoulders!
 
Upvote 0

Forum statistics

Threads
1,214,782
Messages
6,121,532
Members
449,037
Latest member
tmmotairi

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