Sanchayapatra Rate Calculator

Sanchayapatra Rate Calculator BD body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; line-height: 1.6; color: #333; max-width: 800px; margin: 0 auto; padding: 20px; background-color: #f9f9f9; } .calculator-container { background: #ffffff; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); margin-bottom: 40px; border: 1px solid #e0e0e0; } .calculator-title { text-align: center; color: #006a4e; /* Bangladesh Green */ margin-bottom: 25px; font-size: 24px; font-weight: 700; } .form-group { margin-bottom: 20px; } .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #444; } .form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 16px; box-sizing: border-box; } .form-group input:focus, .form-group select:focus { border-color: #006a4e; outline: none; box-shadow: 0 0 0 3px rgba(0, 106, 78, 0.1); } .calc-btn { width: 100%; padding: 14px; background-color: #006a4e; color: white; border: none; border-radius: 6px; font-size: 18px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; } .calc-btn:hover { background-color: #00523c; } .results-box { background-color: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 8px; padding: 20px; margin-top: 25px; display: none; } .result-row { display: flex; justify-content: space-between; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #dcfce7; } .result-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .result-label { color: #555; } .result-value { font-weight: 700; color: #111; } .result-highlight { color: #006a4e; font-size: 1.2em; } .note { font-size: 0.85em; color: #666; margin-top: 15px; background: #eee; padding: 10px; border-radius: 4px; } article { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } h2 { color: #2c3e50; margin-top: 30px; border-bottom: 2px solid #eee; padding-bottom: 10px; } h3 { color: #34495e; margin-top: 20px; } p, li { color: #555; line-height: 1.7; } .table-responsive { overflow-x: auto; margin: 20px 0; } table { width: 100%; border-collapse: collapse; font-size: 0.9em; } th, td { padding: 12px; border: 1px solid #ddd; text-align: left; } th { background-color: #f8f9fa; font-weight: 600; }
Sanchayapatra Profit Calculator
Paribar Sanchayapatra (Monthly Profit) Pensioner Sanchayapatra (Quarterly Profit) 3-Monthly Profit Bearing (Quarterly Profit)
*Used to calculate Rate Tier and Tax Rate.
Profit Payment Frequency:
Applicable Interest Rate:
Tax Rate (Source Tax):
Gross Profit (Per Period):
Tax Deducted:
Net Profit Received: BDT 0
function calculateProfit() { // Inputs var scheme = document.getElementById('sp_scheme').value; var amount = parseFloat(document.getElementById('sp_amount').value); var existing = parseFloat(document.getElementById('sp_existing').value); // Validation if (isNaN(amount) || amount <= 0) { alert("Please enter a valid investment amount."); return; } if (isNaN(existing)) existing = 0; var totalInvestment = amount + existing; var interestRate = 0; var frequency = ""; var periodsPerYear = 0; // Rate Logic (Based on 2024 Cumulative Slabs) // Note: Rates are approximate based on the latest Directorate of National Savings circulars. if (scheme === "paribar") { frequency = "Monthly"; periodsPerYear = 12; if (totalInvestment <= 1500000) { interestRate = 11.52; } else if (totalInvestment <= 3000000) { interestRate = 10.50; } else { interestRate = 9.50; } } else if (scheme === "pensioner") { frequency = "Quarterly (Every 3 Months)"; periodsPerYear = 4; if (totalInvestment <= 1500000) { interestRate = 11.76; } else if (totalInvestment <= 3000000) { interestRate = 10.75; } else { interestRate = 9.75; } } else if (scheme === "quarterly") { frequency = "Quarterly (Every 3 Months)"; periodsPerYear = 4; if (totalInvestment <= 1500000) { interestRate = 11.04; } else if (totalInvestment <= 3000000) { interestRate = 10.00; } else { interestRate = 9.00; } } // Tax Logic // Generally: 5% if total investment 5 Lakh. // This applies to the profit amount. var taxRate = 0; if (totalInvestment <= 500000) { taxRate = 5; } else { taxRate = 10; } // Calculation // Gross Annual Profit var grossAnnual = amount * (interestRate / 100); // Gross Per Period var grossPerPeriod = grossAnnual / periodsPerYear; // Tax Deduction Amount var taxDeduction = grossPerPeriod * (taxRate / 100); // Net Per Period var netPerPeriod = grossPerPeriod – taxDeduction; // Display Results document.getElementById('results').style.display = 'block'; document.getElementById('res_frequency').innerText = frequency; document.getElementById('res_rate').innerText = interestRate.toFixed(2) + "%"; document.getElementById('res_tax_rate').innerText = taxRate + "%"; // Formatting currency BDT var formatter = new Intl.NumberFormat('en-BD', { style: 'currency', currency: 'BDT', minimumFractionDigits: 2 }); document.getElementById('res_gross').innerText = formatter.format(grossPerPeriod); document.getElementById('res_tax_deduction').innerText = formatter.format(taxDeduction); document.getElementById('res_net').innerText = formatter.format(netPerPeriod); }

Sanchayapatra Profit Calculator BD: Rates & Tax Rules (2024)

Calculating the exact return on your Sanchayapatra (National Savings Certificate) investment can be complex due to the tiered interest rate structure introduced by the Government of Bangladesh. This tool helps you estimate your monthly or quarterly profit based on the latest circulars regarding Paribar, Pensioner, and 3-Monthly Profit Bearing Sanchayapatra.

How the Sanchayapatra Rates Work

Unlike standard bank deposits, Sanchayapatra rates are determined by your total cumulative investment across all savings schemes. The rates decrease as your total investment volume increases.

Investment Tier (Total Holdings) Paribar Rate Pensioner Rate 3-Monthly Profit Rate
Up to 15 Lakh 11.52% 11.76% 11.04%
15 Lakh to 30 Lakh 10.50% 10.75% 10.00%
Above 30 Lakh 9.50% 9.75% 9.00%

Understanding Source Tax on Profit

When calculating your net profit (the money that actually hits your bank account), you must account for the Source Tax deducted by the government. The rules generally follow this threshold:

  • 5% Tax: If your total investment in all Sanchayapatra schemes is 5,00,000 BDT or less.
  • 10% Tax: If your total investment exceeds 5,00,000 BDT.

The calculator above automatically applies the 10% tax rate if your combined investment amount exceeds the 5 Lakh BDT threshold.

Scheme Types Explained

1. Paribar Sanchayapatra

Designed primarily for women, this scheme offers a monthly profit payout. It is one of the most popular instruments for family savings. It matures in 5 years, but profit is disbursed every month.

2. Pensioner Sanchayapatra

Exclusive to retired government officials, this scheme offers the highest rates of return. The profit is paid out on a quarterly basis (every 3 months).

3. 3-Monthly Profit Bearing Sanchayapatra

Available to the general public (with specific eligibility criteria), this instrument provides profit payouts every three months. It is a 3-year investment vehicle.

Frequently Asked Questions

Can I encash my Sanchayapatra before maturity?

Yes, you can encash early, but you will not receive the full projected interest rate. A reduced interest rate is applied for early encashment, and any excess profit already paid to you will be adjusted (deducted) from the principal amount returned.

How is the "Existing Investment" used in the calculator?

The government sets interest rates based on slabs. If you already have 20 Lakh invested and want to invest another 5 Lakh, your new investment falls into the "15-30 Lakh" or "Above 30 Lakh" tier, earning a lower interest rate than your initial investment. Our calculator uses the "Existing Investment" field to determine exactly which rate tier applies to your new deposit.

Where can I buy these certificates?

You can purchase Sanchayapatra from Bangladesh Bank offices, National Savings Bureau offices, Post Offices, and most commercial banks in Bangladesh.

Leave a Comment