- Original Poster
- #1
I'm trying to figure out what I need to charge when running my business to give me a final target amount (after all costs & tax) that will essentially be cash in my personal bank account. I thought this would be pretty simple until I got totally stuck on reversing tax (i.e. starting from a known net amount and figuring out the gross that we would need to bring in). I've spent ages on it and my head is spinning.
I think I'm right with the following equation to work out Net income (after tax & NI) starting from a Gross amount:
N is Net, G is Gross, 6475 is the tax free allowance, 0.2 is the 20% tax, 5715 is the NI class 4 threshold and 0.08 is the 8% NI (Class 4).
But I need to start at the Net amount and solve the Gross amount. Now how do you reverse algebraic equations again!? I'd hate to think how complicated this would be if I was to take into account the 40% tax band too. It's so easy going from G to N...
I'm doing all of this in Excel and I want it to be solved with formulas (not goal seek) so I can 'play' with the inputs. Any ideas?
I think I'm right with the following equation to work out Net income (after tax & NI) starting from a Gross amount:
Code:
N = G - ( (G-6475) x 0.2 ) - ( (G-5715) x 0.08 )
But I need to start at the Net amount and solve the Gross amount. Now how do you reverse algebraic equations again!? I'd hate to think how complicated this would be if I was to take into account the 40% tax band too. It's so easy going from G to N...
I'm doing all of this in Excel and I want it to be solved with formulas (not goal seek) so I can 'play' with the inputs. Any ideas?