.anz-calc-container {
max-width: 800px;
margin: 0 auto;
padding: 30px;
background-color: #f4f7f9;
border-radius: 8px;
font-family: ‘Arial’, sans-serif;
color: #004165; /* ANZ Blue-ish tone */
}
.anz-calc-header {
text-align: center;
margin-bottom: 25px;
border-bottom: 2px solid #004165;
padding-bottom: 15px;
}
.anz-calc-header h2 {
margin: 0;
font-size: 24px;
}
.anz-calc-row {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 15px;
}
.anz-calc-col {
flex: 1;
min-width: 250px;
}
.anz-calc-label {
display: block;
margin-bottom: 8px;
font-weight: bold;
font-size: 14px;
}
.anz-calc-input {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
}
.anz-calc-select {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 16px;
box-sizing: border-box;
background-color: #fff;
}
.anz-calc-btn {
width: 100%;
padding: 15px;
background-color: #004165;
color: white;
border: none;
border-radius: 4px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
margin-top: 10px;
transition: background-color 0.3s;
}
.anz-calc-btn:hover {
background-color: #005a8c;
}
.anz-calc-results {
margin-top: 25px;
background-color: #fff;
padding: 20px;
border-radius: 6px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
display: none;
}
.anz-result-row {
display: flex;
justify-content: space-between;
padding: 10px 0;
border-bottom: 1px solid #eee;
}
.anz-result-row:last-child {
border-bottom: none;
}
.anz-result-label {
color: #555;
}
.anz-result-value {
font-weight: bold;
font-size: 18px;
color: #004165;
}
.anz-highlight {
color: #2e8b57;
font-size: 22px;
}
.calc-article {
margin-top: 40px;
line-height: 1.6;
color: #333;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
}
.calc-article h3 {
color: #004165;
margin-top: 25px;
}
.calc-article ul {
margin-left: 20px;
}
.calc-article li {
margin-bottom: 10px;
}
ANZ NZ Term Deposit Estimator
Calculate your potential returns based on current New Zealand term rates.
10.5% (Income up to $14k)
17.5% (Income $14k – $48k)
30.0% (Income $48k – $70k)
33.0% (Income $70k – $180k)
39.0% (Income over $180k)
$0.00
$0.00
$0.00
$0.00
Understanding Your ANZ NZ Term Deposit Returns
Investing in a Term Deposit with banks like ANZ in New Zealand is a secure way to grow your savings with a guaranteed return rate. Unlike variable savings accounts, a Term Deposit locks in your interest rate for the duration of the term, shielding your returns from market fluctuations.
How the Calculation Works
This calculator estimates your return based on the standard simple interest formula used for term deposits where interest is paid at maturity.
- Principal Investment: The initial lump sum you deposit (Minimums often apply, e.g., $2,000 NZD).
- Term Duration: The length of time you agree to lock your funds away. Longer terms often, but not always, attract higher rates.
- RWT (Resident Withholding Tax): In New Zealand, interest earned on bank deposits is considered income. The bank deducts this tax automatically before paying you the interest. Your rate depends on your total annual taxable income.
Maximizing Your Rates
To get the most out of your ANZ term deposit:
- Check “Great Rate” Offers: Banks often have special rates for specific terms (e.g., 6 months, 1 year). These can be significantly higher than standard carded rates.
- Consider Laddering: Instead of locking all funds in one term, split your investment across different terms (e.g., 6 months, 12 months, 18 months) to balance liquidity and return.
- Compound Interest: For terms longer than 12 months, you may have the option to have interest paid into the term deposit rather than a separate account, allowing you to earn interest on your interest.
Note: This calculator provides an estimate based on interest paid at maturity for terms under one year or simple annual interest calculation. Actual returns may vary slightly due to day-count conventions (365 vs 366 days) and specific compounding frequencies.
function calculateTermReturn() {
// 1. Get Input Values using var
var principalInput = document.getElementById(‘depositAmount’);
var termInput = document.getElementById(‘termDuration’);
var rateInput = document.getElementById(‘depositRate’);
var taxInput = document.getElementById(‘taxRate’);
var resultsDiv = document.getElementById(‘resultsSection’);
// 2. Parse Values
var principal = parseFloat(principalInput.value);
var months = parseFloat(termInput.value);
var ratePercent = parseFloat(rateInput.value);
var taxPercent = parseFloat(taxInput.value);
// 3. Validation
if (isNaN(principal) || principal <= 0) {
alert("Please enter a valid principal investment amount.");
return;
}
if (isNaN(months) || months <= 0) {
alert("Please enter a valid term duration in months.");
return;
}
if (isNaN(ratePercent) || ratePercent < 0) {
alert("Please enter a valid term deposit rate.");
return;
}
// 4. Calculation Logic
// Formula: Interest = Principal * (Rate/100) * (Months/12)
// Note: ANZ typically calculates on a daily basis, but (Months/12) is the standard estimation for monthly input calculators.
var annualInterest = principal * (ratePercent / 100);
var termFraction = months / 12.0;
var grossInterest = annualInterest * termFraction;
// Calculate RWT (Tax)
var taxAmount = grossInterest * (taxPercent / 100);
// Calculate Net Interest
var netInterest = grossInterest – taxAmount;
// Calculate Maturity Value
var maturityValue = principal + netInterest;
// 5. Formatting Helper
function formatCurrency(num) {
return "$" + num.toFixed(2).replace(/\d(?=(\d{3})+\.)/g, '$&,');
}
// 6. Output Results
document.getElementById('grossInterestResult').innerHTML = formatCurrency(grossInterest);
document.getElementById('taxDeductionResult').innerHTML = formatCurrency(taxAmount);
document.getElementById('netInterestResult').innerHTML = formatCurrency(netInterest);
document.getElementById('maturityValueResult').innerHTML = formatCurrency(maturityValue);
// Show results section
resultsDiv.style.display = "block";
}