Indemnity Calculation Formula in Excel for Kuwait

Need to build a payroll worksheet or calculate Kuwait indemnity in bulk inside Microsoft Excel or Google Sheets? Copy our tested formulas directly.

1. Recommended Excel Worksheet Layout

Set up your Excel columns according to this schema for standard automated Kuwait Labor Law payroll processing:

CellField DescriptionExample Value
A2Employee Full NameAhmed Al-Mutawa
B2Monthly Remuneration (KWD)650
C2Service Duration in Years (Decimal)7.5
D2Separation Reason ("Termination" or "Resignation")"Resignation"

2. Master Gross Indemnity Formula (Cell E2)

This formula evaluates whether the employee has served 5 years or less, handles pro-rata partial years, and automatically caps the indemnity at 18 months' salary:

=MIN(B2*18, IF(C2<=5, C2*15*(B2/26), (5*15*(B2/26)) + ((C2-5)*30*(B2/26))))
  • B2/26 derives the official daily wage rate.
  • C2<=5 checks if service is within the 15-day rate tier.
  • MIN(B2*18, ...) strictly enforces the 18-month statutory cap.

3. Net Payout with Resignation Multiplier (Cell F2)

To adjust for voluntary resignation tiers under Article 51, use this nested IF function:

=IF(D2="Termination", E2, IF(C2<3, 0, IF(C2<5, E2*0.5, IF(C2<10, E2*(2/3), E2))))

Prefer an Instant Calculation Without Excel?

Try our interactive web tool. Enter your dates or duration, check unused leave add-ons, and download or print results instantly.

Go to Free Web Calculator