UK P60 Income Reconciliation Calculator

Reconcile P60 gross pay and tax paid against HMRC PAYE rules

Ad placeholder (leaderboard)

The UK P60 Income Reconciliation Calculator checks the tax deducted on your P60 against HMRC’s PAYE rules. It recomputes the income tax that should have been paid on your gross pay using the personal allowance and the current tax bands, then flags whether your employer over- or under-deducted.

How it works

The tool computes income tax for England, Wales and Northern Ireland using the 2025/26 figures:

  • Personal allowance: £12,570, tapered by £1 for every £2 of income above £100,000 (gone by £125,140).
  • Basic rate: 20% on taxable income up to £37,700.
  • Higher rate: 40% on taxable income from £37,700 to £125,140.
  • Additional rate: 45% above £125,140.
allowance = max(0, 12,570 - max(0, gross - 100,000) / 2)
taxable = max(0, gross - allowance)
tax = 20% up to 37,700 + 40% to (125,140 - allowance) + 45% above
difference = P60 tax deducted - computed tax

A positive difference means more tax was deducted than the rules require (possible refund); a negative difference means too little was deducted (possible bill).

Tips and notes

  • This models a standard 1257L-style position. A different tax code, benefits in kind, or pension contributions will legitimately change the answer.
  • Scotland has its own bands and rates — this tool does not cover them.
  • A difference does not prove an error; it is a prompt to investigate, not a final figure.
  • Always cross-check with your Personal Tax Account before claiming a refund or expecting a bill.
Ad placeholder (rectangle)