National Insurance Formula

bobzy20

New Member
Joined
Feb 5, 2018
Messages
41
Office Version
  1. 2010
Hi

I'm looking to get help creating a National Insurance Formula which is based on the factors below:

  • you pay National Insurance contributions if you earn more than £162 a week
  • you pay 12% of your earnings above this limit and up to £892 a week
  • the rate drops to 2% of your earnings over £892 a week.

For example, if you earn £1,000 a week, you pay:

  • nothing on the first £162
  • 12% (£87.60) on the next £730
  • 2% (£2.16) on the next £108.

Any help would be great.

Thanks

Bob
 
Last edited:

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
=if(a1<=162,0,if(a1<=892,(a1-162)*0.12,87.6+((a1-892)*0.02)))
 
Upvote 0
I've updated the formula to use the 2019/2020 rates and also made it monthly, instead of weekly.
=IF(A1<=719.01,0,IF(A1<=4167,(A1-719.01)*0.12,(4167-719.01)+((A1-4167)*0.02)))
If doing it for a different year/rate/period then just fill in the values from:
Then fill them into the formula (without the "<<" and ">>")
<<Primary Threshold>> 719.01
<<Upper Earnings Limit>> 4167
=IF(A1<=<<Primary Threshold>>,0,IF(A1<=<<Upper Earnings Limit>>,(A1-<<Primary Threshold>>)*0.12,(<<Upper Earnings Limit>>-<<Primary Threshold>>)+((A1-<<Upper Earnings Limit>>)*0.02)))
 
Upvote 0
Just a different method using the figures from post number 1.
Book1
AB
1100089.76
Sheet1
Cell Formulas
RangeFormula
B1B1=SUMPRODUCT(--(A1>{0;162;892}), (A1-{0;162;892}), {0;0.12;-0.1})

or with the figures from post number 4 (weekly)...
Book1
AB
1100096.28
Sheet1
Cell Formulas
RangeFormula
B1B1=SUMPRODUCT(--(A1>{0;166;962}), (A1-{0;166;962}), {0;0.12;-0.1})
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,884
Messages
6,122,082
Members
449,064
Latest member
MattDRT

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