Peoples Bank Fixed Deposit Rates Calculator

.pb-calc-container { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; max-width: 800px; margin: 20px auto; padding: 30px; background-color: #f9f9f9; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); color: #333; } .pb-calc-header { text-align: center; margin-bottom: 30px; } .pb-calc-header h2 { color: #d32f2f; margin-bottom: 10px; } .pb-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .pb-calc-grid { grid-template-columns: 1fr; } } .pb-input-group { display: flex; flex-direction: column; } .pb-input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .pb-input-group input, .pb-input-group select { padding: 12px; border: 1px solid #ccc; border-radius: 6px; font-size: 16px; } .pb-calc-btn { background-color: #d32f2f; color: white; border: none; padding: 15px 30px; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; width: 100%; transition: background 0.3s; } .pb-calc-btn:hover { background-color: #b71c1c; } .pb-results { margin-top: 30px; padding: 20px; background-color: #fff; border-left: 5px solid #d32f2f; display: none; } .pb-result-row { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; } .pb-result-value { font-weight: bold; color: #2e7d32; } .pb-article { margin-top: 40px; line-height: 1.6; } .pb-article h3 { color: #d32f2f; border-bottom: 2px solid #ffc107; display: inline-block; margin-bottom: 15px; }

People's Bank Fixed Deposit Calculator

Plan your savings growth with precision

At Maturity Monthly Payout
Total Earnings:
Maturity Value:
Monthly Payout:
Withholding Tax (Estimated 5%):

How People's Bank Fixed Deposits Work

A Fixed Deposit (FD) at People's Bank is a secure investment vehicle designed for individuals looking for guaranteed growth on their capital. Unlike standard savings accounts, FDs lock in a specific Annual Yield for a predetermined Duration, ensuring that your wealth is protected from market volatility.

Key Features of People's Bank FDs

People's Bank offers various tiers for its depositors, often providing preferential returns for senior citizens. The duration can range from short-term (1 month) to long-term (60 months). Understanding the difference between Maturity Payouts and Monthly Payouts is crucial for cash flow management.

  • At Maturity: The total yield is calculated and added to your principal at the end of the term. This maximizes the final maturity value.
  • Monthly Payout: Useful for retirees or those needing supplementary income, where the earnings are credited to a linked account every 30 days.

Example Calculation

If you deposit LKR 500,000 for a period of 12 months with an Annual Yield of 12%:

  • Total Gross Earnings: LKR 60,000
  • Monthly Income: LKR 5,000
  • Maturity Value: LKR 560,000

Note: In Sri Lanka, a Withholding Tax (WHT) of 5% is currently applicable on interest earnings for many accounts. Our calculator provides an estimate of this deduction to give you a more realistic net return figure.

Eligibility and Requirements

To open an account based on the rates calculated above, you generally need to be a Sri Lankan citizen or a resident holding a valid NIC or Passport. Minimum deposit requirements often start as low as LKR 5,000 for certain schemes, while special "Senior Citizen" rates apply to those over 60 years of age.

function calculateFD() { var principal = parseFloat(document.getElementById('depositPrincipal').value); var duration = parseFloat(document.getElementById('depositDuration').value); var yieldRate = parseFloat(document.getElementById('annualYield').value); var cycle = document.getElementById('payoutCycle').value; if (isNaN(principal) || isNaN(duration) || isNaN(yieldRate) || principal <= 0 || duration <= 0) { alert("Please enter valid positive numbers in all fields."); return; } // Calculation Logic // Annual Yield is per annum. Duration is in months. var totalGrossEarnings = (principal * (yieldRate / 100) * (duration / 12)); var tax = totalGrossEarnings * 0.05; // 5% WHT estimate var netEarnings = totalGrossEarnings – tax; var maturityValue = principal + netEarnings; var monthlyIncome = (principal * (yieldRate / 100)) / 12; // Display Results document.getElementById('resultsArea').style.display = 'block'; document.getElementById('resEarnings').innerText = 'LKR ' + netEarnings.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resMaturity').innerText = 'LKR ' + maturityValue.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resTax').innerText = 'LKR ' + tax.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); var monthlyRow = document.getElementById('monthlyDisplay'); if (cycle === 'monthly') { monthlyRow.style.display = 'flex'; document.getElementById('resMonthly').innerText = 'LKR ' + (monthlyIncome * 0.95).toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); // Net monthly } else { monthlyRow.style.display = 'none'; } }

Leave a Comment