Reverse calculate commission and tax on commission

simondb

New Member
Joined
Nov 1, 2016
Messages
10
Hi, I have a situation where I know a final price and the percentage for commission & tax on the commission only. I need to reverse calculate this to get the starting price.

Example:
If the commission is 15% and the tax on the commission only is 20% and the final value is 118.00 then I need a formula to be able to calculate the original value (in this case it would be 100.00)
The commission and tax percentages are not fixed values.

Please help, I cannot seem to be able to do this.
Thank you
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Your reasoning seems to be that the "tax on the commission only" is added to the original value plus the commission. If that's the case, then this gives you what you want:

test.xlsx
BCD
1
2Final Value =$118.00
3
4Commission =15.0%
5
6Tax on Commission =20.0%
7
8Original Value = $100.00
9
Sheet3
Cell Formulas
RangeFormula
C8C8=C2/(1+(C4*(1+C6)))
 
Upvote 0
Solution
Your reasoning seems to be that the "tax on the commission only" is added to the original value plus the commission. If that's the case, then this gives you what you want:

test.xlsx
BCD
1
2Final Value =$118.00
3
4Commission =15.0%
5
6Tax on Commission =20.0%
7
8Original Value = $100.00
9
Sheet3
Cell Formulas
RangeFormula
C8C8=C2/(1+(C4*(1+C6)))
Perfect, thank you
 
Upvote 0
Here is the Mcode. I imported your file to Power Query. Highlighted the two columns and clicked on Remove Rows-->Remove Duplicates.

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Removed Duplicates" = Table.Distinct(Source)
in
    #"Removed Duplicates"
 
Upvote 0

Forum statistics

Threads
1,215,102
Messages
6,123,097
Members
449,096
Latest member
provoking

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