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).
Finance Jobs, The Jitu.com Jobs. As a Treasury Analyst, you will be responsible for supporting treasury operations, banking relationships, liquidity management, financial reconciliations, and transaction monitoring within a fast-paced global financial environment. The role involves ensuring accurate cash management, supporting…
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.
Audit Jobs. Artcaffé Jobs Are you a detail-oriented governance professional who thrives on protecting business integrity? We are seeking a Lead Controller – Audit, Risk & Compliance to safeguard our operations across all branches. In this role, you will be the…
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.
Banking Jobs, Diamond Trust Bank Jobs. Role Purpose: An exciting opportunity has arisen for a Treasury Assistant Manager to join the team. This role offers the chance to contribute to the effective management of liquidity, foreign exchange, and interest rate…
Banking Jobs, Standard Bank Jobs. Job Description To prepare, collate, design and develop complex risk reports to enable the Risk team to provide high quality reporting and insights to key stakeholders in line with established deadlines and governance standards. To…
Banking Jobs, SMEP Microfinance Bank Jobs. The job holder will be charged with conducting rigorous loan appraisals. He/she will ensure all credit requests are underwritten in line with laid down internal policies, procedures, product guidelines and best practices. The role undertakes a…
Banking Jobs, Family Bank Jobs. REPORTING TO: HEAD OF PRODUCT HOUSE Job Purpose: The Product Manager – Liabilities is responsible for the strategic development, management, optimization and commercialization of the bank’s liabilities product portfolio including deposits, transactional accounts, savings solutions,…
Banking Jobs, Family Bank Jobs. Reporting to: Head of Digital Financial Services Job Purpose: Manage the (Omni-Channel) Internet and the native Mobile App product discovery, design, development, Strategy and Vision Key Responsibilities: End to product design, development and entire life…
Register Your CV With Us And We shall Match You With Jobs That Suit You. Upload your CV to be considered for jobs that match your skills, experience and career level. Upload your CV here — It's free.
Banking Jobs, Family Bank Jobs. REPORTING TO: HEAD OF SME BANKING Job Purpose: The Manager will lead agribusiness division, driving the bank’s mission to empower sustainable agricultural development across Kenya. This role involves overseeing a diverse portfolio that includes smallholder…
Banking Jobs, Family Bank Jobs. REPORT TO: HEAD OF DIGITAL FINANCIAL SERVICES. Job Purpose: The objective of this role is to drive the adoption of the bank’s digital solutions including but not limited to mobile banking among our customers and…
Finance Jobs Reporting to: Directors, Industry: FMCG, Location: Diani, Gross Salary: Ksh 200,000, Our client is a leading distributor of wines and beverages in Kenya, seeking a highly skilled and experienced Head of Finance to lead our financial operations and…
Finance Jobs. Reporting To: Directors,Contract Period: 3 Years (Renewable),Location: Lubumbashi, DRC,Industry: Oil & Gas,Gross Salary: KES 250,000 – 300,000 plus other benefits, Our client is an Oil & Gas company based in Dubai. They are looking to hire a Senior…
Finance Jobs, Commission on Administrative Justice Jobs. Duties and Responsibilities: Competencies For appointment to this position, a candidate must; All interested candidates who meet the job indent for this position are encouraged to send their application through the CAJ E-recruitment…
Finance Jobs. Cedar Consulting Jobs What You Will Do Investment Origination and Execution. Market and Strategy Team Contribution What We Are Looking For What BIO Invest Offers: How to Apply Click Here to Apply
Finance Jobs. Cedar Consulting Jobs Role Purpose Key Responsibilities Financial Management (60%) Operations & Project Support (30%) Strategic Assistance (10%) Candidate Profile How to Apply Click Here to Apply
Finance Jobs, Equiti Group Jobs. Responsibilities Skills & Competencies Experience Requirements Perks Each of our offices has its special perks; be it ‘no ties’, free lunches, charity events, or a hybrid work policy – but whenever you walk into an…
Banking Jobs, I&M Bank Jobs. Job Purpose: Key Responsibilities: Academic Qualifications: Professional Qualifications / Membership to professional bodies/ Publication: Work Experience Required: Key Competencies: How to Apply Click here to apply
Finance Jobs. Bio Food Products About Bio Food Products At Bio Food Products Ltd, we are passionate about crafting the highest quality dairy and food products in East Africa. Since 1992, we have built a trusted brand founded on innovation,…
Finance Jobs. Brites Management Jobs Key Responsibilities Market Research & Intelligence Business Analysis Research & Development Reporting & Presentation Stakeholder Support Qualifications & Experience How to Apply
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"};