{"id":226380,"date":"2025-02-25T04:54:07","date_gmt":"2025-02-25T04:54:07","guid":{"rendered":"https:\/\/jisort.com\/blog\/?page_id=226380"},"modified":"2025-02-25T06:23:54","modified_gmt":"2025-02-25T06:23:54","slug":"nssf-calculator","status":"publish","type":"page","link":"https:\/\/www.jisort.com\/blog\/nssf-calculator\/","title":{"rendered":"NSSF Calculator for Kenyan Employees"},"content":{"rendered":"<style>.kb-row-layout-id226380_440e02-43 > .kt-row-column-wrap{align-content:start;}:where(.kb-row-layout-id226380_440e02-43 > .kt-row-column-wrap) > .wp-block-kadence-column{justify-content:start;}.kb-row-layout-id226380_440e02-43 > .kt-row-column-wrap{column-gap:var(--global-kb-gap-md, 2rem);row-gap:var(--global-kb-gap-md, 2rem);padding-top:var(--global-kb-spacing-sm, 1.5rem);padding-bottom:var(--global-kb-spacing-sm, 1.5rem);grid-template-columns:minmax(0, calc(45% - ((var(--global-kb-gap-md, 2rem) * 1 )\/2)))minmax(0, calc(55% - ((var(--global-kb-gap-md, 2rem) * 1 )\/2)));}.kb-row-layout-id226380_440e02-43 > .kt-row-layout-overlay{opacity:0.30;}@media all and (max-width: 1024px){.kb-row-layout-id226380_440e02-43 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr) minmax(0, 2fr);}}@media all and (max-width: 767px){.kb-row-layout-id226380_440e02-43 > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}<\/style><div class=\"kb-row-layout-wrap kb-row-layout-id226380_440e02-43 alignnone wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-2-columns kt-row-layout-right-golden kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top\">\n<style>.kadence-column226380_967a1b-fc > .kt-inside-inner-col,.kadence-column226380_967a1b-fc > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-column226380_967a1b-fc > .kt-inside-inner-col{column-gap:var(--global-kb-gap-sm, 1rem);}.kadence-column226380_967a1b-fc > .kt-inside-inner-col{flex-direction:column;}.kadence-column226380_967a1b-fc > .kt-inside-inner-col > .aligncenter{width:100%;}.kadence-column226380_967a1b-fc > .kt-inside-inner-col:before{opacity:0.3;}.kadence-column226380_967a1b-fc{position:relative;}@media all and (max-width: 1024px){.kadence-column226380_967a1b-fc > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}@media all and (max-width: 767px){.kadence-column226380_967a1b-fc > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}<\/style>\n<div class=\"wp-block-kadence-column kadence-column226380_967a1b-fc\"><div class=\"kt-inside-inner-col\">\n<p><\/p>\n\n\n    <style>\r\n        .nssf-container {\r\n            max-width: 500px;\r\n            margin: auto;\r\n            padding: 20px;\r\n            background: #f8f8f8;\r\n            border-radius: 8px;\r\n            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);\r\n            font-family: Arial, sans-serif;\r\n        }\r\n        .nssf-container h2 {\r\n            text-align: center;\r\n            color: #333;\r\n        }\r\n        .nssf-container label {\r\n            font-weight: bold;\r\n            margin-top: 10px;\r\n            display: block;\r\n        }\r\n        .nssf-container input {\r\n            width: 100%;\r\n            padding: 10px;\r\n            margin-top: 5px;\r\n            border: 1px solid #ddd;\r\n            border-radius: 5px;\r\n            font-size: 16px;\r\n        }\r\n        .nssf-result {\r\n            margin-top: 20px;\r\n            background: #fff;\r\n            border-radius: 5px;\r\n            border: 1px solid #ddd;\r\n            padding: 10px;\r\n        }\r\n        .nssf-table {\r\n            width: 100%;\r\n            border-collapse: collapse;\r\n            margin-top: 10px;\r\n        }\r\n        .nssf-table th, .nssf-table td {\r\n            border: 1px solid #ddd;\r\n            padding: 12px 15px; \/* Added more padding for better spacing *\/\r\n            text-align: left;\r\n        }\r\n        .nssf-table th {\r\n            background-color: #f2f2f2;\r\n            font-weight: bold;\r\n        }\r\n        .nssf-table .total {\r\n            background-color: #d4edda;\r\n            font-weight: bold;\r\n        }\r\n    <\/style>\r\n\r\n    <div class=\"nssf-container\">\r\n        <h2>NSSF Calculator<\/h2>\r\n        <label for=\"nssf_salary\">Gross Monthly Salary (KES):<\/label>\r\n        <input type=\"number\" id=\"nssf_salary\" value=\"35000\" oninput=\"calculateNSSF()\" min=\"1\">\r\n        <div id=\"nssf_output\" class=\"nssf-result\"><\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        function calculateNSSF() {\r\n            var salaryField = document.getElementById('nssf_salary');\r\n            var salary = parseFloat(salaryField.value);\r\n\r\n            \/\/ Ensure default value is 35,000 if field is empty or invalid\r\n            if (isNaN(salary) || salary <= 0) {\r\n                salaryField.value = 35000;\r\n                salary = 35000;\r\n            }\r\n\r\n            var lel = 8000;\r\n            var uel = 72000;\r\n            var tier1_salary = Math.min(salary, lel);\r\n            var tier1_contribution = tier1_salary * 0.06;\r\n\r\n            var tier2_salary = salary > lel ? Math.min(salary - lel, uel - lel) : 0;\r\n            var tier2_contribution = tier2_salary * 0.06;\r\n\r\n            var total_employee = tier1_contribution + tier2_contribution;\r\n            var total_employer = total_employee;\r\n            var total_contribution = total_employee + total_employer;\r\n\r\n            document.getElementById('nssf_output').innerHTML = `\r\n                <table class=\"nssf-table\">\r\n                    <tr>\r\n                        <th>Category<\/th>\r\n                        <th>Amount (KES)<\/th>\r\n                    <\/tr>\r\n                    <tr>\r\n                        <td>Gross Salary<\/td>\r\n                        <td>${salary.toLocaleString()}<\/td>\r\n                    <\/tr>\r\n                    <tr>\r\n                        <td>Tier I Contribution (6% of 8,000)<\/td>\r\n                        <td>${tier1_contribution.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                    <tr>\r\n                        <td>Tier II Contribution (6% of excess up to 72,000)<\/td>\r\n                        <td>${tier2_contribution.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                    <tr>\r\n                        <td>Employee Contribution<\/td>\r\n                        <td>${total_employee.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                    <tr>\r\n                        <td>Employer Contribution<\/td>\r\n                        <td>${total_employer.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                    <tr class=\"total\">\r\n                        <td>Total NSSF Contribution<\/td>\r\n                        <td>${total_contribution.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                <\/table>\r\n            `;\r\n        }\r\n\r\n        \/\/ Auto-run calculation on page load\r\n        document.addEventListener(\"DOMContentLoaded\", function() {\r\n            calculateNSSF();\r\n        });\r\n    <\/script>\r\n    \n<\/div><\/div>\n\n\n<style>.kadence-column226380_ddf8da-86 > .kt-inside-inner-col,.kadence-column226380_ddf8da-86 > .kt-inside-inner-col:before{border-top-left-radius:0px;border-top-right-radius:0px;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}.kadence-column226380_ddf8da-86 > .kt-inside-inner-col{column-gap:var(--global-kb-gap-sm, 1rem);}.kadence-column226380_ddf8da-86 > .kt-inside-inner-col{flex-direction:column;}.kadence-column226380_ddf8da-86 > .kt-inside-inner-col > .aligncenter{width:100%;}.kadence-column226380_ddf8da-86 > .kt-inside-inner-col:before{opacity:0.3;}.kadence-column226380_ddf8da-86{position:relative;}@media all and (max-width: 1024px){.kadence-column226380_ddf8da-86 > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}@media all and (max-width: 767px){.kadence-column226380_ddf8da-86 > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}<\/style>\n<div class=\"wp-block-kadence-column kadence-column226380_ddf8da-86\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"wp-block-heading\">What is the NSSF Calculator ?<\/h2>\n\n\n\n<p>The NSSF calculator helps employees and employers determine their monthly <a href=\"https:\/\/jisort.com\/blog\/how-to-calculate-new-nssf-contributions\/\" data-type=\"post\" data-id=\"226363\" target=\"_blank\" rel=\"noopener\">National Social Security Fund (NSSF) contributions<\/a> based on the latest rates.<\/p>\n\n\n\n<p>As of 2024, NSSF contributions are divided into two tiers:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Tier I Contributions \u2013 Calculated as 6% of salaries up to KES 8,000<br><\/li>\n\n\n\n<li>Tier II Contributions \u2013 6% of salaries between KES 8,000 and KES 72,000<\/li>\n<\/ul>\n\n\n\n<p>Both employees and employers contribute an equal amount, doubling the total contribution.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate NSSF Contributions in Kenya<\/h2>\n\n\n\n<p>To manually calculate your <strong>NSSF deductions<\/strong>, follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Determine your gross salary<\/strong> \u2013 This is your monthly earnings before deductions.<\/li>\n\n\n\n<li><strong>Apply the Tier I rate<\/strong> \u2013 Take 6% of up to KES 8,000.<\/li>\n\n\n\n<li><strong>Apply the Tier II rate<\/strong> \u2013 Take 6% of your salary between KES 8,000 and KES 72,000.<\/li>\n\n\n\n<li><strong>Add both values<\/strong> \u2013 This gives you the total employee contribution.<\/li>\n\n\n\n<li><strong>Employer matches this amount<\/strong>, so the total contribution doubles.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Example Calculation<\/h3>\n\n\n\n<p>For an employee earning KES 50,000 per month:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Category<\/th><th>Amount (KES)<\/th><\/tr><\/thead><tbody><tr><td>Tier I (6% of 8,000)<\/td><td>480<\/td><\/tr><tr><td>Tier II (6% of 42,000)<\/td><td>2,520<\/td><\/tr><tr><td>Total Employee Contribution<\/td><td>3,000<\/td><\/tr><tr><td>Employer Contribution (Matching)<\/td><td>3,000<\/td><\/tr><tr><td>Total NSSF Contribution<\/td><td>6,000<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Use Our Free NSSF Calculator Kenya<\/h2>\n\n\n\n<p>Instead of calculating manually, <strong>use our free NSSF calculator in Kenya<\/strong> for instant results.<\/p>\n\n\n\n<p>\ud83d\udc49 <strong><a href=\"#nssf-calc\">Try the NSSF Calculator Now<\/a><\/strong><\/p>\n\n\n\n<p><strong>Why use the online NSSF calculator?<\/strong><br><br>\u2705 <strong>Instant Results<\/strong> \u2013 Get your NSSF breakdown in seconds.<br>\u2705 <strong>Accurate &amp; Updated<\/strong> \u2013 Based on the latest 2024 NSSF rates.<br>\u2705 <strong>Employer &amp; Employee Breakdown<\/strong> \u2013 See both contributions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Use the NSSF Calculator in Kenya<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Enter your gross salary<\/strong> in the input field.<\/li>\n\n\n\n<li><strong>Click \u201cCalculate\u201d<\/strong> to see your NSSF contribution.<\/li>\n\n\n\n<li><strong>View breakdown<\/strong> of employee, employer, and total amounts.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Benefits of NSSF Contributions in Kenya<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">a) Retirement Savings<\/h3>\n\n\n\n<p>Your NSSF deductions go towards your pension savings, ensuring financial security after retirement.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">b) Employer Compliance<\/h3>\n\n\n\n<p>Under the NSSF Act 2013, employers must remit NSSF contributions or face penalties. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">c) Long-Term Financial Security<\/h3>\n\n\n\n<p>NSSF offers pension benefits, invalidity benefits, and survivor benefits, helping Kenyan workers and their families.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">About Jisort<br><\/h2>\n\n\n\n<p>If you run a Sacco, microfinance institution, or digital lending platform, managing customer deposits, loans, and transactions efficiently is critical.<\/p>\n\n\n\n<p><a href=\"https:\/\/www.jisort.com\/\"><strong>Jisort<\/strong><\/a> is a cloud-based banking system that automates:<\/p>\n\n\n\n<p>\u2714 Loan management &amp; disbursement<br>\u2714 Savings &amp; deposit tracking<br>\u2714 Automated accounting &amp; reporting<br>\u2714 Credit scoring &amp; risk management<br>\u2714 Mobile banking &amp; integrations<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Why Choose Jisort?<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>100% Cloud-Based \u2013 Manage your financial institution anytime, anywhere.<\/li>\n\n\n\n<li>Multi-Currency &amp; Multi-Branch Support \u2013 Ideal for microfinance institutions, digital lenders, and Saccos.<\/li>\n\n\n\n<li>Secure &amp; Scalable \u2013 Designed for regulated and non-regulated financial institutions.<\/li>\n\n\n\n<li>Easy Integration \u2013 Connect with M-Pesa, mobile wallets, CRB, USSD, and banks.<\/li>\n<\/ul>\n\n\n\n<p>Ready to digitize your Sacco or lending business?<\/p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/jisort.com\/\" target=\"_blank\" rel=\"noopener\">Get Started with Jisort Today<\/a><\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Frequently Asked Questions (FAQs)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">How much is NSSF deduction per month in Kenya?<\/h3>\n\n\n\n<p>The NSSF deduction is 6% of your gross salary, up to a maximum of KES 4,320 per month (employer and employee combined).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is the minimum salary for NSSF in Kenya?<\/h3>\n\n\n\n<p>The minimum salary for NSSF contributions is KES 8,000 under Tier I contributions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Can an employer fail to pay NSSF?<\/h3>\n\n\n\n<p>No, employers must remit NSSF contributions or face penalties. Businesses can automate payments with to avoid compliance issues.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What happens if I don\u2019t contribute to NSSF?<\/h3>\n\n\n\n<p>If you fail to contribute, you may miss out on pension benefits upon retirement. Employers also face penalties for non-compliance.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How do I check my NSSF contributions online?<\/h3>\n\n\n\n<p>You can check your NSSF statement via the <a href=\"https:\/\/selfservice.nssf.or.ke\" target=\"_blank\" rel=\"noopener\">NSSF Self-Service Portal<\/a> or by dialing <em>*303# on your phone<\/em>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Does Jisort offer payroll services?<\/h3>\n\n\n\n<p>No, Jisort is not a payroll system. It is a cloud banking solution for microfinance institutions, Saccos, and digital lenders to manage loans, deposits, and financial services.<\/p>\n<\/div><\/div>\n\n<\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>What is the NSSF Calculator ? The NSSF calculator helps employees and employers determine their monthly National Social Security Fund (NSSF) contributions based on the latest rates. As of 2024, NSSF contributions are divided into two tiers: Both employees and employers contribute an equal amount, doubling the total contribution. How to Calculate NSSF Contributions in [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-226380","page","type-page","status-publish","hentry"],"blocksy_meta":[],"acf":[],"_links":{"self":[{"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/pages\/226380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/comments?post=226380"}],"version-history":[{"count":11,"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/pages\/226380\/revisions"}],"predecessor-version":[{"id":226402,"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/pages\/226380\/revisions\/226402"}],"wp:attachment":[{"href":"https:\/\/www.jisort.com\/blog\/wp-json\/wp\/v2\/media?parent=226380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}