{"id":226413,"date":"2025-02-25T13:54:56","date_gmt":"2025-02-25T13:54:56","guid":{"rendered":"https:\/\/jisort.com\/blog\/?page_id=226413"},"modified":"2025-02-25T13:56:12","modified_gmt":"2025-02-25T13:56:12","slug":"cps-calculator","status":"publish","type":"page","link":"https:\/\/jisort.com\/blog\/cps-calculator\/","title":{"rendered":"CPS Calculator for Nigerians"},"content":{"rendered":"\n<p>Use our Nigeria CPS calculator to determine your monthly employee and employer pension contributions under the Contributory Pension Scheme (CPS). Get instant results with real-time calculations!<\/p>\n\n\n<style>.kb-row-layout-id226413_a02790-8c > .kt-row-column-wrap{align-content:start;}:where(.kb-row-layout-id226413_a02790-8c > .kt-row-column-wrap) > .wp-block-kadence-column{justify-content:start;}.kb-row-layout-id226413_a02790-8c > .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, 1fr) minmax(0, 2fr);}.kb-row-layout-id226413_a02790-8c > .kt-row-layout-overlay{opacity:0.30;}@media all and (max-width: 1024px){.kb-row-layout-id226413_a02790-8c > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr) minmax(0, 2fr);}}@media all and (max-width: 767px){.kb-row-layout-id226413_a02790-8c > .kt-row-column-wrap{grid-template-columns:minmax(0, 1fr);}}<\/style><div class=\"kb-row-layout-wrap kb-row-layout-id226413_a02790-8c 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-column226413_9e9be3-4a > .kt-inside-inner-col,.kadence-column226413_9e9be3-4a > .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-column226413_9e9be3-4a > .kt-inside-inner-col{column-gap:var(--global-kb-gap-sm, 1rem);}.kadence-column226413_9e9be3-4a > .kt-inside-inner-col{flex-direction:column;}.kadence-column226413_9e9be3-4a > .kt-inside-inner-col > .aligncenter{width:100%;}.kadence-column226413_9e9be3-4a > .kt-inside-inner-col:before{opacity:0.3;}.kadence-column226413_9e9be3-4a{position:relative;}@media all and (max-width: 1024px){.kadence-column226413_9e9be3-4a > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}@media all and (max-width: 767px){.kadence-column226413_9e9be3-4a > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}<\/style>\n<div class=\"wp-block-kadence-column kadence-column226413_9e9be3-4a\"><div class=\"kt-inside-inner-col\">    <style>\r\n        .cps-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        .cps-container h2 {\r\n            text-align: center;\r\n            color: #333;\r\n        }\r\n        .cps-container label {\r\n            font-weight: bold;\r\n            margin-top: 10px;\r\n            display: block;\r\n        }\r\n        .cps-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        .cps-result {\r\n            margin-top: 20px;\r\n            background: #fff;\r\n            border-radius: 5px;\r\n            border: 1px solid #ddd;\r\n            padding: 15px;\r\n        }\r\n        .cps-table {\r\n            width: 100%;\r\n            border-collapse: collapse;\r\n            margin-top: 10px;\r\n        }\r\n        .cps-table th, .cps-table td {\r\n            border: 1px solid #ddd;\r\n            padding: 15px;\r\n            text-align: left;\r\n        }\r\n        .cps-table th {\r\n            background-color: #f2f2f2;\r\n            font-weight: bold;\r\n        }\r\n        .cps-table .total {\r\n            background-color: #d4edda;\r\n            font-weight: bold;\r\n        }\r\n    <\/style>\r\n\r\n    <div class=\"cps-container\">\r\n        <h4>Nigeria CPS Contribution Calculator<\/h4>\r\n        <label for=\"cps_salary_ng\">Gross Monthly Salary (NGN):<\/label>\r\n        <input type=\"number\" id=\"cps_salary_ng\" value=\"150000\" oninput=\"calculateCPSNigeria()\" min=\"1\">\r\n        <div id=\"cps_output_ng\" class=\"cps-result\"><\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        function calculateCPSNigeria() {\r\n            var salaryField = document.getElementById('cps_salary_ng');\r\n            var salary = parseFloat(salaryField.value);\r\n\r\n            \/\/ Ensure default value is 150,000 if field is empty or invalid\r\n            if (isNaN(salary) || salary <= 0) {\r\n                salaryField.value = 150000;\r\n                salary = 150000;\r\n            }\r\n\r\n            var employee_contribution = salary * 0.08; \/\/ 8% of gross salary\r\n            var employer_contribution = salary * 0.10; \/\/ 10% of gross salary\r\n            var total_contribution = employee_contribution + employer_contribution;\r\n\r\n            document.getElementById('cps_output_ng').innerHTML = `\r\n                <table class=\"cps-table\">\r\n                    <tr>\r\n                        <th>Category<\/th>\r\n                        <th>Amount (NGN)<\/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>Employee Contribution (8%)<\/td>\r\n                        <td>${employee_contribution.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                    <tr>\r\n                        <td>Employer Contribution (10%)<\/td>\r\n                        <td>${employer_contribution.toFixed(2)}<\/td>\r\n                    <\/tr>\r\n                    <tr class=\"total\">\r\n                        <td>Total CPS 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            calculateCPSNigeria();\r\n        });\r\n    <\/script>\r\n    \n<\/div><\/div>\n\n\n<style>.kadence-column226413_c5a5e1-3a > .kt-inside-inner-col,.kadence-column226413_c5a5e1-3a > .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-column226413_c5a5e1-3a > .kt-inside-inner-col{column-gap:var(--global-kb-gap-sm, 1rem);}.kadence-column226413_c5a5e1-3a > .kt-inside-inner-col{flex-direction:column;}.kadence-column226413_c5a5e1-3a > .kt-inside-inner-col > .aligncenter{width:100%;}.kadence-column226413_c5a5e1-3a > .kt-inside-inner-col:before{opacity:0.3;}.kadence-column226413_c5a5e1-3a{position:relative;}@media all and (max-width: 1024px){.kadence-column226413_c5a5e1-3a > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}@media all and (max-width: 767px){.kadence-column226413_c5a5e1-3a > .kt-inside-inner-col{flex-direction:column;justify-content:center;}}<\/style>\n<div class=\"wp-block-kadence-column kadence-column226413_c5a5e1-3a\"><div class=\"kt-inside-inner-col\">\n<h2 class=\"wp-block-heading\">What Is the CPS Calculator Nigeria?<\/h2>\n\n\n\n<p>The Contributory Pension Scheme (CPS) Calculator helps employees and employers determine their mandatory pension contributions in Nigeria based on their gross salary.<\/p>\n\n\n\n<p>As per the Pension Reform Act 2014, pension contributions in Nigeria follow this structure:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Employee contributes 8% of their gross monthly salary.<\/li>\n\n\n\n<li>Employer contributes 10% of the employee\u2019s gross salary.<\/li>\n\n\n\n<li>Total CPS Contribution = 18% of the employee\u2019s gross salary.<\/li>\n<\/ul>\n\n\n\n<p>The CPS pension scheme applies to all employees in the public and private sectors, ensuring that Nigerians have a secured retirement plan.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Calculate CPS Contributions in Nigeria<\/h2>\n\n\n\n<p>To manually calculate your CPS pension deductions, follow these steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Determine your gross salary \u2013 This is your monthly earnings before any deductions.<\/li>\n\n\n\n<li>Calculate the employee\u2019s contribution \u2013 Multiply gross salary \u00d7 8%.<\/li>\n\n\n\n<li>Calculate the employer\u2019s contribution \u2013 Multiply gross salary \u00d7 10%.<\/li>\n\n\n\n<li>Add both contributions \u2013 This gives you the total CPS contribution.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">Example CPS Calculation<\/h3>\n\n\n\n<p>For an employee earning <strong>NGN 300,000 per month<\/strong>:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Category<\/strong><\/td><td><strong>Amount (NGN)<\/strong><\/td><\/tr><tr><td>Gross Salary<\/td><td>300,000<\/td><\/tr><tr><td>Employee Contribution (8%)<\/td><td>24,000<\/td><\/tr><tr><td>Employer Contribution (10%)<\/td><td>30,000<\/td><\/tr><tr><td>Total CPS Contribution (18%)<\/td><td>54,000<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>\ud83d\udca1 Instead of manually calculating, use our free CPS calculator for Nigeria!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Use Our Free CPS Calculator Nigeria<\/h2>\n\n\n\n<p>Instead of doing manual calculations, use our free CPS Nigeria calculator for quick and accurate results.<\/p>\n\n\n\n<p>\ud83d\udc49 Try the CPS Calculator Now<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Use the CPS Calculator in Nigeria<\/h3>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Enter your gross salary in the input field.<\/li>\n\n\n\n<li>See instant results \u2013 No need to press a button!<\/li>\n\n\n\n<li>View the breakdown of employee, employer, and total pension contributions.<\/li>\n<\/ol>\n\n\n\n<p>\u2705 Uses official 2024 CPS pension rates<br>\u2705 Provides both employer &amp; employee contributions<br>\u2705 Instant calculations, no waiting!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why CPS Contributions Matter in Nigeria<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">a) Retirement Security<\/h3>\n\n\n\n<p>The CPS ensures that employees save for retirement, providing financial security after their working years.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">b) Employer Compliance<\/h3>\n\n\n\n<p>Under the Pension Reform Act 2014, employers must remit pension contributions or face penalties from the National Pension Commission (PenCom).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">c) Financial Stability for Employees<\/h3>\n\n\n\n<p>The CPS allows Nigerian workers to build their Retirement Savings Account (RSA), ensuring they receive a steady pension after retirement.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently Asked Questions (FAQs)<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">i) How much is the CPS pension contribution per month in Nigeria?<\/h3>\n\n\n\n<p>CPS pension contributions are 8% of the employee\u2019s gross salary and 10% of the employer\u2019s contribution, making a total of 18% of the gross salary.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">ii) What is the minimum salary for CPS contributions in Nigeria?<\/h3>\n\n\n\n<p>The Pension Reform Act 2014 does not set a minimum salary for CPS contributions.&nbsp;<\/p>\n\n\n\n<p>However, all employees in the formal sector must contribute.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">iii) Can employers avoid paying CPS contributions?<\/h3>\n\n\n\n<p>No. The law requires employers to remit pension contributions to their employees&#8217; Retirement Savings Accounts (RSA) every month.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">iv) How do I check my CPS contributions in Nigeria?<\/h3>\n\n\n\n<p>You can check your CPS pension contributions via:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your Pension Fund Administrator (PFA) online portal.<\/li>\n\n\n\n<li>Requesting a statement from your PFA.<\/li>\n\n\n\n<li>PenCom\u2019s online compliance system.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts: Use the CPS Nigeria Calculator for Instant Calculations<\/h2>\n\n\n\n<p>The CPS calculator Nigeria simplifies pension contribution calculations, ensuring employees and employers comply with the latest CPS rates in 2024.<\/p>\n\n\n\n<p>\u2705 Calculate your CPS contributions now<br>\u2705 Ensure accurate employer &amp; employee pension deductions<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Search Queries<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>CPS calculator Nigeria<\/li>\n\n\n\n<li>Nigeria pension calculator<\/li>\n\n\n\n<li>CPS contribution Nigeria<\/li>\n\n\n\n<li>Nigeria contributory pension scheme<\/li>\n\n\n\n<li>Pension Reform Act 2014<\/li>\n\n\n\n<li>Employee pension contribution Nigeria<\/li>\n\n\n\n<li>Employer pension deduction Nigeria<\/li>\n\n\n\n<li>PenCom CPS contributions<\/li>\n\n\n\n<li>Retirement Savings Account Nigeria<\/li>\n\n\n\n<li>Best pension plan in Nigeria<\/li>\n<\/ul>\n<\/div><\/div>\n\n<\/div><\/div>","protected":false},"excerpt":{"rendered":"<p>Use our Nigeria CPS calculator to determine your monthly employee and employer pension contributions under the Contributory Pension Scheme (CPS). Get instant results with real-time calculations! What Is the CPS Calculator Nigeria? The Contributory Pension Scheme (CPS) Calculator helps employees and employers determine their mandatory pension contributions in Nigeria based on their gross salary. As [&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-226413","page","type-page","status-publish","hentry"],"blocksy_meta":[],"acf":[],"_links":{"self":[{"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/pages\/226413","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/comments?post=226413"}],"version-history":[{"count":2,"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/pages\/226413\/revisions"}],"predecessor-version":[{"id":226416,"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/pages\/226413\/revisions\/226416"}],"wp:attachment":[{"href":"https:\/\/jisort.com\/blog\/wp-json\/wp\/v2\/media?parent=226413"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}