How to calculate N.I contributions per month

Soldato
Joined
1 Mar 2003
Posts
5,508
Location
Cotham, Bristol
I mean without using online calculators like listen to taxman. I've found the following on the direct.gov.uk website

  • if you earn more than £139 a week and up to £817 a week, you pay 12 per cent of the amount you earn between £139 and £817
  • if you earn more than £817 a week, you also pay 2 per cent of all your earnings over £817

So that's ok I have an excel formula that looks a bit like this

Code:
NI per week = (((Annual salary/52) - 139) * 0.12)
NI per month = NI per week * weeks in a month

So say for December I use 4 weeks in the month (I know it's a bit more), the above comes up with a value of £227, on the actual pay slip it was £216, the listentotaxman calculator also has £216. So I'm obviously missing something?
 
Right figured it out, apparently I had to take into account child care vouchers, so 243 out of my pay per month pre tax.

Code:
Salary per week = Annual salary/52
Child care per week = (243*12)/52 = 56.08
NI per week = (("salary per week" - "child care per week" - 139) * 0.12) = 49.98
NI per month = NI per week * average weeks in a month = 49.98 * 4.33 = 216.39
 
Back
Top Bottom