Find Gross wage from net pay

Vanda_a

Well-known Member
Joined
Oct 29, 2012
Messages
934
Hello all.

Could anyone teach me how to find gross salary if I have a net pay of 12,204,000?
The gross is 13,742,520 but I don't know how to build a auto calculate table in excel

<tbody>
</tbody>
ex: 13,742,520 goes range 20%. so
13,742,520 x 20% = 2,748,504 - 1,210,000 = 1,538,504 tax.
13,742,520 - 1,538,504 = 12,204,016

<tbody>
</tbody>
<strike></strike>
below is table range of wage.
fromtorateallowance
01,200,0000%
1,200,0012,000,0005%-60,000
2,000,0018,500,00010%-160,000
8,500,00112,500,00015%-585,000
12,500,00120%-1,210,000

<tbody>
</tbody>

Thank you very much.

<tbody>
</tbody>
 
Last edited:

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Could you help to explain what the Max does in the formula please?

MAX is used in two formulas, namely:
Code:
B5:  { =MAX((B2 - B3*$C$15:$C$19 - $D$15:$D$19) / (1 - $C$15:$C$19)) }
B7:  =MAX(0, B5+B6)

In B7, MAX ensures that when the calculated gross is less than the deduction, the taxable salary is zero instead of negative.

Presumably, you are interested in the use of MAX in B5. To understand, change the target net to 7,000,000, and temporarily enter the following formula into F15 and copy down:

=($B$2 - $B$3*C15 - D15) / (1 - C15)

This is demonstrated in the following table:


Book1
ABCDEF
2target net7,000,000.00
3deductions123,456.00
4
5gross7,586,282.67
6deductions-123,456.00
7taxable salary7,462,826.67
8tax586,282.67
9
10gross7,586,282.67
11tax-586,282.67
12net7,000,000.00
13
14taxable salary over...to...rateallowancediff rategross= max of...
150.001,200,000.000.00%0.000.00%7,000,000.00
161,200,000.002,000,000.005.00%60,000.005.00%7,298,765.47
172,000,000.008,500,000.0010.00%160,000.005.00%7,586,282.67
188,500,000.0012,500,000.0015.00%585,000.005.00%7,525,272.47
1912,500,000.0020.00%1,210,000.005.00%7,206,636.00
Sheet1


If we use each of the calculated gross amounts (F15:F19) in the formulas for tax and net, all of them derive the target net amount.

As we can see, the best gross amount is in F17. That is, it is the maximum of all of the possible calculated gross amounts.

And that is what we calculate in B5 without the need for the "helper" cells in F15:F19.

-----

The problem is with the recursive calculation of the gross amount. The algebraic derivation is shown belown (all amounts are positive values).

gross - tax = net

gross - ( (gross - deductions)*rate - allowance ) = net

gross*(1 - rate) = net - deductions*rate - allowance

gross = (net - deductions*rate - allowance) / (1 - rate)

Because rate is used in both the numerator and the dividend, we cannot determine the appropriate rate by looking up the numerator, as I effectively did before we included deductions in the equation (posts #10 and 11).

So we simply calculate the gross for all rates, then choose the best (maximum) calculated gross amount.
 
Upvote 0
If we use each of the calculated gross amounts (F15:F19) in the formulas for tax and net, all of them derive the target net amount.

Well, that probably didn't make good sense to you.

What I meant was: if we substitute each calculated gross amount into your formulas for tax and net
-- namely, tax = (gross - deductions)*rate - allowance and net = gross - tax --
all of them derive the target net amount. See column G in the table below.

But that is tautological, since we used those formulas to derive the gross amount in column F. (Klunk!)

However, only the max gross amount derives the target net amount when we use the actual tax based on max gross minus deductions (taxable salary).

I know that is correct. It is demonstrated in columns H:J in the table below. And it made some intuitive sense to me when I first derived the solution 8 days ago.

But frankly, I'm at a loss to explain it now. I'm distracted by other things to do. Sorry.


Book1
ABCDEFGHIJ
2target net7,000,000.00
3deductions123,456.00
4
5gross7,586,282.67
6deductions-123,456.00
7taxable salary7,462,826.67
8tax586,282.67
9
10gross7,586,282.67
11tax-586,282.67
12net7,000,000.00
13
14taxable salary over...to...rateallowancediff rategross= max of...net = g - (g-d)*r + ataxl sal = g - dactl tax on taxl salnet = g - actlTax
150.001,200,000.000.00%0.000.00%7,000,000.007,000,000.006,876,544.00527,654.406,472,345.60
161,200,000.002,000,000.005.00%60,000.005.00%7,298,765.477,000,000.007,175,309.47557,530.956,741,234.53
172,000,000.008,500,000.0010.00%160,000.005.00%7,586,282.677,000,000.007,462,826.67586,282.677,000,000.00
188,500,000.0012,500,000.0015.00%585,000.005.00%7,525,272.477,000,000.007,401,816.47580,181.656,945,090.82
1912,500,000.0020.00%1,210,000.005.00%7,206,636.007,000,000.007,083,180.00548,318.006,658,318.00
Sheet1

Code:
G15: =F15 - (F15 - $B$3)*C15 + D15
H15: =F15 - $B$3
I15: =SUMPRODUCT((H15 > $A$15:$A$19)*(H15 - $A$15:$A$19), $E$15:$E$19)
J15: =F15 - I15
Copy G15:J15 into G16:J19


The algebraic derivation is shown belown (all amounts are positive values).
gross - tax = net
gross - ( (gross - deductions)*rate - allowance ) = net
gross*(1 - rate) = net - deductions*rate - allowance
gross = (net - deductions*rate - allowance) / (1 - rate)

That probably would be clearer if I add one step (in red):

gross - tax = net

gross - ( (gross - deductions)*rate - allowance ) = net

gross - gross*rate + deductions*rate + allowance = net

gross*(1 - rate) = net - deductions*rate - allowance

gross = (net - deductions*rate - allowance) / (1 - rate)
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,043
Members
449,092
Latest member
ikke

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