var wpdm_url = {"home":"https://atotaxrates.info/","site":"https://atotaxrates.info/","ajax":"https://atotaxrates.info/wp-admin/admin-ajax.php"};
var wpdm_js = {"spinner":"\u003Ci class=\"wpdm-icon wpdm-sun wpdm-spin\"\u003E\u003C/i\u003E","client_id":"94cf4bc5d9160f231f0bc3f707493505"};
var wpdm_strings = {"pass_var":"Password Verified!","pass_var_q":"Please click following button to start download.","start_dl":"Start Download"};
//# sourceURL=wpdm-frontjs-js-extra
Calculate franking credits or reverse-solve dividend amounts using company imputation tax rates.
Use this to estimate franking credit based on company's tax rate, dividend amount, and how much of the dividend is franked.
▼
$
%
Grossup multiple (calculated)
Franking Credit
$0.00
Tax Rate
25.0%
Franked Portion
—
Enter all values above to calculate your franking credit.
Use this when you want to know what dividend would be required for a given company tax rate, franking credit and franking percentage.
▼
$
%
Grossup multiple (calculated)
Dividend Amount
$0.00
Tax Rate
25.0%
Franked Portion
—
Enter all values above to calculate the dividend amount.
Franking Credit Calculator For An Individual Shareholder/Investor
This calculator estimates the tax effect of an individual taxpayer receiving a franked dividend at selected personal marginal tax rates. See also Claiming your franking credits refund.
Note that the taxable dividend amount is generally the cash dividend plus the franking credit – shown in the calculation as “grossed-up income”.
The general company tax rate of 30% applies for most public and/or large companies which are not “base rate entities”. The lower rate of 25% applies to “base rate” companies, which are companies with turnover of less than $50 million and pass the passive income test.
Franking Credit:$0.00
Grossed-up Income:$0
Personal Tax Rate:32.00%
Tax on Gross Income:$0.00
Net Tax Payable$0
Note: This is a standalone calculator for the 2025-26 tax year and is for illustration purposes only.
It calculates the tax impact of a dividend in isolation, assuming all eligibility conditions are met.
Medicare low income relief or surcharge amounts are ignored. Final assessments are determined solely by the ATO.
The formulae for calculating franking credits (as used in the above calculators) are as follows:
To Determine A Franking Credit
To determine a franking credit amount, the known formula variables are:
company tax rate of the paying entity (e.g. T= 30%)
the amount of the dividend paid (e.g. D= $10,000)
the percentage of franking (e.g. P = 50%)
The unknown variable is the franking credit (F).
The franking credit formula is: F = D x [T ÷ (1 – T)] x P
In this example, F = 10,000 x [0.30 ÷ (1 – 0.30)] x 0.50 which equals $2,142.85
This example calculation shows that a dividend of $10,000 paid by a company with an imputation tax rate of 30% and franked to 50% would have a franking credit of $2,142.86.
To Determine a Dividend Amount
For a company wanting to know what dividend it should pay in order to distribute a specific amount of franking credits to its shareholders, the known formula variables are:
company tax rate of the paying entity (e.g. T= 30%)
percentage of franking (e.g. P = 100%)
amount of franking credits (e.g. F = $3,500)
The unknown variable is the amount of dividend (D).
The formula to calculate the dividend is D = [F x (1 – T)] ÷ P×T
In this example D =[3500 x (1 – 0.30)] ÷ 1 x 0.30 which equals $8166.67
This example calculation shows that a company with an imputation tax rate of 30% wanting to use tax credits of $3,500 would pay a dividend of $8,166.67 if franked to 100%.
Franking Credit Rules: 45 Day Holding Rule
Even though you may have received a dividend notice showing an entitlement to franking credits, you may not (subject to the small shareholder exemption) claim the credits if you haven’t met the 45 Day Holding Rule.
The 45-day holding rule requires shareholder investors to hold their shares “at risk” for at least 45 days (or 90 days in the case of certain preference shares) in order to be able to claim the franking tax offset, which came into effect 1 July 1997.
The holding period does not include the day of acquisition or disposal.
Small Shareholder Exemption
The holding period rule doesn’t apply to smaller shareholder individuals whose total franking credits within a tax year are less than $5,000. The exemption is only available to individual taxpayers.
The Related Payments Rule and Dividend Washing
The related payments and dividend washing rules are anti tax avoidance measures.
They are designed to deny a taxpayer’s franking credit tax offset when the franking benefit is passed to someone else, or where dividend washing has been carried out.
Dividend washing is where shares are sold ex dividend and replaced on market cum dividend thereby gaining an entitlement to two franking credits. In this case the second franking credit tax offset is denied.
Details of these integrity measures and how they are applied are set out by the Tax Office here.
Franking credit tax offsets are refundable, which means that (unlike most other tax offsets), if the tax offset exceeds the amount of tax payable, the difference can be refunded. How this works and links to the tax forms are set out here.
See also:
Preventing Dividend Washing: Tax And Superannuation Laws Amendment (2014 Measures No. #) Bill 2014 Explanatory Materials
Example Dividend Notice Explained
You can check the numbers on a dividend advice notice using the first calculator “SOLVE FOR FRANKING CREDIT AMOUNT” above.
The dividend notice contains unfranked ($200) and franked ($700) amounts plus a franking credit $300).
For an individual investor, the total of these items ($1,200) is all included in taxable income, with $300 claimable as a franking credit tax offset (assuming all eligibility conditions are met).
The franking percentage is not required to be entered in your tax return, but as matter of interest can be calculated as the ratio of franked dividend ($700) to the total ($700+$200 = $900): $700 ÷ $900 = 77.78%.
The company tax rate is not usually stated on the dividend notice, as it is not required by law, and is not required to be entered in your tax return. Most public companies are using an imputation tax rate of 30% because they are not base rate entities, and this can normally be assumed. If the dividend source is a base rate company, the tax rate is more likely to be 25%.
This page was last modified 2026-06-05
(() => {
// ── Helpers ──────────────────────────────────────────────
const AUD = new Intl.NumberFormat('en-AU', { style:'currency', currency:'AUD', maximumFractionDigits:2 });
const fmt = n => AUD.format(Math.round(n * 100) / 100);
function parseAmt(str) {
const cleaned = String(str || '').replace(/[^0-9.]/g, '');
const n = parseFloat(cleaned);
return isFinite(n) ? n : 0;
}
function clampPct(val) { return Math.min(100, Math.max(0, parseFloat(val) || 0)); }
function calcGrossup(rate) { return (1 - rate) / rate; }
function calcFrankingCredit(dividend, grossup, pctFraction) {
return (dividend / grossup) * pctFraction;
}
// ── Tab switching ────────────────────────────────────────
const tabBtns = document.querySelectorAll('.fc.tab-btn');
const panels = { credit: document.getElementById('fc-panel-credit'), dividend: document.getElementById('fc-panel-dividend') };
const divider = document.querySelector('.fc.divider');
tabBtns.forEach(btn => {
btn.addEventListener('click', () => {
const tab = btn.getAttribute('data-tab');
tabBtns.forEach(b => {
b.classList.toggle('active', b === btn);
b.setAttribute('aria-pressed', b === btn ? 'true' : 'false');
});
Object.entries(panels).forEach(([key, el]) => el.classList.toggle('active', key === tab));
// hide divider when panel 2 active (no panel below)
});
});
// ── Panel 1: Solve for Franking Credit ───────────────────
const p1 = {
taxRate: document.getElementById('fc-taxRate'),
dividend: document.getElementById('fc-dividendAmount'),
pct: document.getElementById('fc-frankingPct'),
grossup: document.getElementById('fc-grossupMultiple'),
result: document.getElementById('fc-frankingCreditResult'),
rateDisp: document.getElementById('fc-taxRateDisplay'),
frankedDisp:document.getElementById('fc-frankedPortion'),
comment: document.getElementById('fc-summaryComment'),
clearDiv: document.getElementById('fc-clearDividend'),
clearPct: document.getElementById('fc-clearFranking'),
};
function updateP1() {
const taxRate = parseFloat(p1.taxRate.value);
const dividend = parseAmt(p1.dividend.value);
const pctRaw = clampPct(p1.pct.value);
const pctFrac = pctRaw / 100;
const grossup = calcGrossup(taxRate);
const credit = calcFrankingCredit(dividend, grossup, pctFrac);
p1.grossup.value = grossup.toFixed(4);
p1.result.textContent = fmt(credit);
p1.rateDisp.textContent = (taxRate * 100).toFixed(1) + '%';
p1.frankedDisp.textContent = pctRaw.toFixed(2) + '%';
if (dividend && pctFrac) {
p1.comment.textContent =
`This calculation shows that a dividend of ${fmt(dividend)} paid by a company with an imputation tax rate of ` +
`${(taxRate*100).toFixed(1)}% and franked to ${pctRaw.toFixed(2)}% ` +
`gives a franking credit of ${fmt(credit)}.`;
} else {
p1.comment.textContent = 'Enter all values above to calculate your franking credit.';
}
}
p1.taxRate.addEventListener('change', updateP1);
p1.pct.addEventListener('input', updateP1);
p1.dividend.addEventListener('input', updateP1);
p1.dividend.addEventListener('blur', () => {
const n = parseAmt(p1.dividend.value);
p1.dividend.value = n ? Math.round(n).toLocaleString('en-AU') : '';
updateP1();
});
p1.dividend.addEventListener('focus', () => {
p1.dividend.value = p1.dividend.value.replace(/[^0-9.]/g, '');
});
p1.clearDiv.addEventListener('click', () => { p1.dividend.value = ''; updateP1(); p1.dividend.focus(); });
p1.clearPct.addEventListener('click', () => { p1.pct.value = ''; updateP1(); p1.pct.focus(); });
// ── Panel 2: Solve for Dividend Amount ───────────────────
const p2 = {
taxRate: document.getElementById('fc-taxRate2'),
credit: document.getElementById('fc-frankingCredit2'),
pct: document.getElementById('fc-frankingPct2'),
grossup: document.getElementById('fc-grossupMultiple2'),
result: document.getElementById('fc-dividendAmountResult'),
rateDisp: document.getElementById('fc-taxRateDisplay2'),
frankedDisp:document.getElementById('fc-frankedPortion2'),
comment: document.getElementById('fc-summaryComment2'),
clearCred: document.getElementById('fc-clearCredit2'),
clearPct: document.getElementById('fc-clearFranking2'),
};
function updateP2() {
const taxRate = parseFloat(p2.taxRate.value);
const credit = parseAmt(p2.credit.value);
const pctRaw = clampPct(p2.pct.value);
const pctFrac = pctRaw / 100;
const grossup = calcGrossup(taxRate);
const dividend = (pctFrac > 0) ? (credit * grossup) / pctFrac : 0;
p2.grossup.value = grossup.toFixed(4);
p2.result.textContent = fmt(dividend);
p2.rateDisp.textContent = (taxRate * 100).toFixed(1) + '%';
p2.frankedDisp.textContent = pctRaw.toFixed(2) + '%';
if (credit && pctFrac) {
p2.comment.textContent =
`This calculation shows that a company with an imputation tax rate of ${(taxRate*100).toFixed(1)}% ` +
`wanting to use tax credits of ${fmt(credit)} ` +
`would pay a dividend of ${fmt(dividend)} if franked to ${pctRaw.toFixed(2)}%.`;
} else {
p2.comment.textContent = 'Enter all values above to calculate the dividend amount.';
}
}
p2.taxRate.addEventListener('change', updateP2);
p2.pct.addEventListener('input', updateP2);
p2.credit.addEventListener('input', updateP2);
p2.credit.addEventListener('blur', () => {
const n = parseAmt(p2.credit.value);
p2.credit.value = n ? Math.round(n).toLocaleString('en-AU') : '';
updateP2();
});
p2.credit.addEventListener('focus', () => {
p2.credit.value = p2.credit.value.replace(/[^0-9.]/g, '');
});
p2.clearCred.addEventListener('click', () => { p2.credit.value = ''; updateP2(); p2.credit.focus(); });
p2.clearPct.addEventListener('click', () => { p2.pct.value = ''; updateP2(); p2.pct.focus(); });
// Init
updateP1();
updateP2();
})();
const abmsg = "We noticed an ad blocker. Consider whitelisting us to support the site ❤️";
const abmsgd = "download";
const iswpdmpropage = 0;
jQuery(function($){
});
var searchwp_live_search_params = [];
searchwp_live_search_params = {"ajaxurl":"https:\/\/atotaxrates.info\/wp-admin\/admin-ajax.php","origin_id":43008,"config":{"default":{"engine":"default","input":{"delay":300,"min_chars":3},"results":{"position":"bottom","width":"auto","offset":{"x":0,"y":5}},"spinner":{"lines":12,"length":8,"width":3,"radius":8,"scale":1,"corners":1,"color":"#424242","fadeColor":"transparent","speed":1,"rotate":0,"animation":"searchwp-spinner-line-fade-quick","direction":1,"zIndex":2000000000,"className":"spinner","top":"50%","left":"50%","shadow":"0 0 1px transparent","position":"absolute"}}},"msg_no_config_found":"No valid SearchWP Live Search configuration found!","aria_instructions":"When autocomplete results are available use up and down arrows to review and enter to go to the desired page. Touch device users, explore by touch or with swipe gestures."};;
//# sourceURL=swp-live-search-client-js-extra