Any suggestions to make this calculation more compact? (Gross Pre-tax Income derived from Net Income after tax)

FatFreddy

New Member
Joined
Sep 21, 2009
Messages
16
I have created a small spreadsheet to derive the Gross Pre-tax Income when all that is known is the Net Income, and the Tax Brackets and Rates.

In the example that follows, when the known Net Income is entered in D18, E18 displays the correct Gross Income.

The Tax Brackets and Rates are not static, but are in turn drawn from a set of 13 different Provincial rate groups using an INDIRECT function.

This was the best solution I could think of and it is accurate, but if possible, I'd like to condense this a bit more if there is a simple way to do it that I have overlooked and am very receptive to any ideas that may be obvious to others with more experience.

Thank you for your consideration
Excel Workbook
ABCDEF
1ThresholdRate*Cummulative TaxCummulative NetGross Sums
2****$0.00FALSE
3$00.00%*$0.00$10,320.00FALSE
4$10,32015.00%*$1,011.15$16,049.85FALSE
5$17,06120.60%*$1,057.29$16,227.71FALSE
6$17,28523.26%*$3,884.78$25,556.22FALSE
7$29,44120.06%*$5,143.54$30,572.46FALSE
8$35,71622.70%*$6,280.81$34,445.19$56,230.71
9$40,72629.70%*$15,400.79$56,032.21FALSE
10$71,43332.50%*$18,656.97$62,795.03FALSE
11$81,45236.50%*$18,862.10$63,151.90FALSE
12$82,01438.29%*$25,591.18$73,996.82FALSE
13$99,58840.70%*$36,448.32$89,815.68FALSE
14$126,26443.70%*$2,166,270.95$2,833,729.05FALSE
15$5,000,000*****
16******
17***Net (Entered):Gross (calculated):*
18***$45,345.00$56,230.71*
, FF. Sheet1
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
You can use the following formula in Cell E18 and eliminate Column F entirely:

Code:
=INDEX(E3:E14,MATCH(D18,E3:E14,1))+INDEX(D3:D14,MATCH(D18,E3:E14,1))+(($D$18-INDEX(E3:E14,MATCH(D18,E3:E14,1)))/(1-INDEX(B3:B14,MATCH(D18,E3:E14,1)+1)))

Hopefully this helps point you in an alternate direction.

Take care,

Owen
 
Upvote 0
You can use the following formula in Cell E18 and eliminate Column F entirely:

Code:
=INDEX(E3:E14,MATCH(D18,E3:E14,1))+INDEX(D3:D14,MATCH(D18,E3:E14,1))+(($D$18-INDEX(E3:E14,MATCH(D18,E3:E14,1)))/(1-INDEX(B3:B14,MATCH(D18,E3:E14,1)+1)))

Hopefully this helps point you in an alternate direction.

Take care,

Owen

Even this one gives the same answer as mine :)

Excel Workbook
ABCDEFG
21*ABCDEF
221ThresholdRate*Cummulative TaxCummulative NetGross Sums
232****$0.00
243$00.00%*$0.00$10,320.00
254$10,32015.00%*$1,011.15$16,049.85
265$17,06120.60%*$1,057.29$16,227.71
276$17,28523.26%*$3,884.78$25,556.22
287$29,44120.06%*$5,143.54$30,572.46
298$35,71622.70%*$6,280.81$34,445.19
309$40,72629.70%*$15,400.79$56,032.21$ 74,348.24
3110$71,43332.50%*$18,656.97$62,795.03
3211$81,45236.50%*$18,862.10$63,151.90
3312$82,01438.29%*$25,591.18$73,996.82
3413$99,58840.70%*$36,448.32$89,815.68
3514$126,26443.70%*$2,166,270.95$2,833,729.05
3615$5,000,000**
3716***
3817***Net (Entered):Gross (calculated):
3918***$58,000.00$ 74,348.24*
40
41$ 74,348.24
Sheet1
 
Upvote 0
Thank you MorganO.

That is exactly what I was thinking before Asad pointed out he had already answered my question completely in another thread!

I will take what you added to my solution and place it by his solution and see what I can learn from the comparison of the two responses to perhaps use in the future. I have just discovered this forum - what a great resource this is, thank you!
 
Upvote 0

Forum statistics

Threads
1,215,093
Messages
6,123,069
Members
449,090
Latest member
fragment

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