DEV Community

ImmigrationGPT
ImmigrationGPT

Posted on

UK Immigration Health Surcharge 2026: Refund Mechanics, Mid-Visa Departures, and the Calculation Errors That Break Workforce Budget Models

The UK Immigration Health Surcharge is one of those visa cost components that HR and People Ops teams consistently underestimate — not because the rules are obscure, but because the edge cases are. The headline rate is straightforward: £1,035 per person per year for most visa categories. The complexity lives in what happens to that figure when circumstances change mid-visa.

Rounding Up, Not Pro-Rating

The IHS calculation rounds the visa duration up to the nearest full year. A 30-month visa costs 3 × £1,035 = £3,105. A 36-month visa costs 3 × £1,035 = £3,105. A 37-month visa costs 4 × £1,035 = £4,140. The jump is at the year boundary, not interpolated.

For workforce planning models, this means the cost function is not linear. If your HR system calculates IHS as visa_duration_years × £1,035, it will undercharge by one year's IHS for any visa period with a non-zero remainder in months.

Correct formula: ceiling(visa_duration_months / 12) × 1035 × headcount

Apply to dependants separately. A 32-month main applicant visa with two adult dependants: ceiling(32/12) × 1035 × 3 = 3 × 1035 × 3 = £9,315.

Exemption Logic

NHS and adult social care workers are exempt — and this extends to their dependants. The qualifying condition is direct employment by an NHS body or registered social care provider, not simply supplying services to one. A contractor placed at an NHS trust through an agency does not qualify.

Student and Youth Mobility Scheme applicants pay £776/year rather than £1,035. Your eligibility logic should branch on these visa categories before applying the standard rate.

Exempt countries exist under bilateral treaties. Current list is maintained on GOV.UK. Don't hardcode it — it changes.

Refund Mechanics: The Mid-Visa Departure Problem

This is where most HR systems have a gap. If an employee leaves the UK permanently mid-visa and formally cancels their leave through the UKVI Migrant Help process, they're entitled to a partial IHS refund calculated in 12-month blocks:

  • 14 months remaining at cancellation → 1 year refunded
  • 23 months remaining → 1 year refunded
  • 24 months remaining → 2 years refunded

Two edge cases to model:

Informal departure — if the employee leaves without cancelling leave, no refund is triggered. Companies that advance IHS costs as part of relocation packages may never recover this. The fix is a formal departure checklist in offboarding that captures whether the employee will formally cancel UK leave.

Visa expiry before departure — if the visa expires while the employee is still in the UK and no extension is filed, no refund applies. This is distinct from cancellation.

Budget Model Implications

For a company relocating a cohort of Skilled Worker visa holders, the IHS budget line should include:

  • Main applicants: headcount × ceiling(visa_months/12) × £1,035
  • Dependants: sum of each dependant count × same formula
  • Exemption credit: subtract for NHS/care-exempt roles
  • Departure refund credit: model as probability-weighted recovery — typical attrition rate × average remaining months × £1,035 × recovery probability (realistic range: 0.3–0.5 depending on offboarding process quality)

A 10-person cohort on 3-year visas with an average of 1.5 dependants each costs around £93,150 in IHS alone before any visa fees or sponsor levy.

Verification Before Submission

IHS is paid during the visa application, before entry clearance is granted. If the payment is miscalculated and the stated figure doesn't match what GOV.UK's system expects, the application fails at the payment stage — not the decision stage. A calculation error on a family of four can mean a £4,000+ discrepancy requiring resubmission.

For sponsored workers, the employer typically advances IHS as part of the relocation package. Build a sign-off step into your internal approval workflow for IHS calculation before payment is authorised.

GOV.UK's IHS calculator at gov.uk/healthcare-immigration-application handles the arithmetic correctly. For sponsor licence status checks and visa policy lookups in plain English, immigrationgpt.co.uk provides a searchable reference drawing from current GOV.UK guidance.


This post is for technical reference only. UK immigration fees and rules change. Always verify current rates with official GOV.UK guidance or a qualified immigration adviser before making compliance or budgeting decisions.

Top comments (0)