Finance professionals help companies plan, invest, and manage funds wisely. You’ll evaluate numbers and help shape decisions that matter. It’s a trusted field if you’re analytical and dependable. Careers in finance offer both stability and growth. Check out our finance job opportunities in Kenya.
Kenya Net Pay Calculator
Gross Salary:
NSSF (Tier I & II):
SHIF (2.75%):
Housing Levy (1.5%):
PAYE (Tax):
Personal Relief:- KSh 2,400.00
Net Salary:
Based on 2026 Kenyan Statutory Rates (NSSF cap KSh 6,480).
By Lisa Osiako The Corona pandemic brought just about everything in the country to a standstill. In the job market, many professionals lost their jobs, had to take pay cuts, and even others were sent on indefinite unpaid leave. With…
Are you recruiting and want to attract qualified professionals in Kenya? Advertise your job with us. Reach over 500,000 qualified Kenyan professionals. Advertise your job here. And start receiving qualified applicants fast.
When the year began, you may have hoped and planned to get a new job, change careers, or even quit your job and start a business. Were you able to follow through with your plans? Raphael Mutisya applied for a…
Have you been feeling stuck and wondering what could be going wrong with your job applications? Truth is, applying for jobs and not getting any feedback can be a daunting process. I, however, want to remind you that you are…
Pass your next job interview with confidence? Master the confidence to sell yourself during interviews and get the salary you deserve. Click here for interview preparation Interview with confidence.
By Teresa Mulomi I love numbers more than flowers or chocolate. I am a natural problem solver, and it, therefore, comes as no surprise that Mathematics was and still is my favorite subject. When everybody else was having a hard…
document.addEventListener('DOMContentLoaded', function() {
var btn = document.getElementById('calcBtn');
btn.addEventListener('click', function() {
var gross = parseFloat(document.getElementById('grossInput').value);
if (isNaN(gross) || gross <= 0) {
alert("Please enter a valid salary amount.");
return;
}// 1. NSSF 2026 (6% capped at 6,480)
var nssf = Math.min(gross * 0.06, 6480);// 2. SHIF (2.75%)
var shif = Math.max(gross * 0.0275, 300);// 3. Housing Levy (1.5%)
var housing = gross * 0.015;// 4. PAYE Calculation
var taxable = gross - nssf - shif - housing;
var paye = 0;if (taxable > 24000) {
var remaining = taxable;
// 10% on first 24,000
paye += 24000 * 0.1;
remaining -= 24000;
if (remaining > 0) {
// 25% on next 8,333
var chunk = Math.min(remaining, 8333);
paye += chunk * 0.25;
remaining -= chunk;
}
if (remaining > 0) {
// 30% on next 467,667
var chunk = Math.min(remaining, 467667);
paye += chunk * 0.30;
remaining -= chunk;
}
if (remaining > 0) {
// 32.5% on next 300,000
var chunk = Math.min(remaining, 300000);
paye += chunk * 0.325;
remaining -= chunk;
}
if (remaining > 0) {
// 35% above that
paye += remaining * 0.35;
}
}// Net PAYE after KSh 2,400 relief
var finalPaye = Math.max(0, paye - 2400);
var net = gross - nssf - shif - housing - finalPaye;// Display formatting
var fmt = new Intl.NumberFormat('en-KE', { style: 'currency', currency: 'KES' });
document.getElementById('outGross').innerText = fmt.format(gross);
document.getElementById('outNSSF').innerText = "- " + fmt.format(nssf);
document.getElementById('outSHIF').innerText = "- " + fmt.format(shif);
document.getElementById('outHousing').innerText = "- " + fmt.format(housing);
document.getElementById('outPAYE').innerText = "- " + fmt.format(finalPaye);
document.getElementById('outNet').innerText = fmt.format(net);
document.getElementById('resultsDisplay').style.display = 'block';
});
});
var kadenceConfig = {"screenReader":{"expand":"Child menu","expandOf":"Child menu of","collapse":"Child menu","collapseOf":"Child menu of"},"breakPoints":{"desktop":"1024","tablet":768},"scrollOffset":"0"};
//# sourceURL=kadence-navigation-js-extra
ai_front = {"insertion_before":"BEFORE","insertion_after":"AFTER","insertion_prepend":"PREPEND CONTENT","insertion_append":"APPEND CONTENT","insertion_replace_content":"REPLACE CONTENT","insertion_replace_element":"REPLACE ELEMENT","visible":"VISIBLE","hidden":"HIDDEN","fallback":"FALLBACK","automatically_placed":"Automatically placed by AdSense Auto ads code","cancel":"Cancel","use":"Use","add":"Add","parent":"Parent","cancel_element_selection":"Cancel element selection","select_parent_element":"Select parent element","css_selector":"CSS selector","use_current_selector":"Use current selector","element":"ELEMENT","path":"PATH","selector":"SELECTOR"};