Calculate the 2024 Sustainable Growth Rate

2024 Sustainable Growth Rate Calculator

The Sustainable Growth Rate (SGR) is a financial metric used to estimate the maximum rate at which a company can grow its sales and earnings without increasing its financial leverage (i.e., without issuing new debt or equity). It's a key indicator of a company's ability to self-fund its growth.

Understanding the Sustainable Growth Rate Formula

The Sustainable Growth Rate (SGR) is calculated using the following formula:

SGR = Net Profit Margin × Asset Turnover × Equity Multiplier × Retention Ratio

Alternatively, it can be expressed as:

SGR = Return on Equity (ROE) × Retention Ratio

Where:

  • Net Profit Margin: Measures how much net income is generated as a percentage of revenue.
  • Asset Turnover: Measures how efficiently a company uses its assets to generate sales.
  • Equity Multiplier: Measures financial leverage. A higher equity multiplier indicates more debt financing relative to equity. It is calculated as Total Assets / Total Equity.
  • Return on Equity (ROE): Measures a company's profitability by revealing how much profit a company generates with the money shareholders have invested. It is calculated as Net Profit Margin × Asset Turnover × Equity Multiplier.
  • Retention Ratio: The proportion of net income that a company retains and reinvests in the business, rather than distributing as dividends. It is calculated as 1 – Dividend Payout Ratio.

A company's SGR indicates its capacity for internal growth. If a company consistently grows faster than its SGR, it might be increasing its financial risk. Conversely, if it grows slower, it might not be fully leveraging its potential for profitable expansion.

Example Calculation

Let's consider a company with the following financial figures for 2024:

  • Net Profit Margin: 12% (0.12)
  • Asset Turnover: 1.8
  • Equity Multiplier: 2.5
  • Retention Ratio: 70% (0.70)

First, we calculate the Return on Equity (ROE):

ROE = Net Profit Margin × Asset Turnover × Equity Multiplier

ROE = 0.12 × 1.8 × 2.5 = 0.54 or 54%

Now, we calculate the Sustainable Growth Rate (SGR):

SGR = ROE × Retention Ratio

SGR = 0.54 × 0.70 = 0.378 or 37.8%

This means the company can sustain a growth rate of up to 37.8% per year without altering its financial structure or taking on additional debt relative to its equity.

function calculateSGR() { var netProfitMargin = parseFloat(document.getElementById("netProfitMargin").value); var assetTurnover = parseFloat(document.getElementById("assetTurnover").value); var equityMultiplier = parseFloat(document.getElementById("equityMultiplier").value); var retentionRatio = parseFloat(document.getElementById("retentionRatio").value); var resultDiv = document.getElementById("result"); resultDiv.innerHTML = ""; if (isNaN(netProfitMargin) || isNaN(assetTurnover) || isNaN(equityMultiplier) || isNaN(retentionRatio)) { resultDiv.innerHTML = "Please enter valid numbers for all fields."; return; } if (netProfitMargin < 0 || assetTurnover <= 0 || equityMultiplier <= 0 || retentionRatio 1) { resultDiv.innerHTML = "Please enter valid positive values. Net Profit Margin and Retention Ratio can be between 0 and 1 (or represent percentages). Asset Turnover and Equity Multiplier should be positive."; return; } var roe = netProfitMargin * assetTurnover * equityMultiplier; var sgr = roe * retentionRatio; resultDiv.innerHTML = "

Calculation Results:

" + "Return on Equity (ROE): " + roe.toFixed(4) + " (" + (roe * 100).toFixed(2) + "%)" + "Sustainable Growth Rate (SGR): " + sgr.toFixed(4) + " (" + (sgr * 100).toFixed(2) + "%)"; } #sustainableGrowthRateCalculator { font-family: Arial, sans-serif; border: 1px solid #ccc; padding: 20px; border-radius: 8px; max-width: 700px; margin: 20px auto; background-color: #f9f9f9; } #sustainableGrowthRateCalculator h2, #sustainableGrowthRateCalculator h3 { color: #333; border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 15px; } .form-group { margin-bottom: 15px; } .form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #555; } .form-group input[type="number"] { width: calc(100% – 12px); padding: 8px; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } #sustainableGrowthRateCalculator button { background-color: #007bff; color: white; padding: 10px 15px; border: none; border-radius: 4px; cursor: pointer; font-size: 16px; margin-top: 10px; } #sustainableGrowthRateCalculator button:hover { background-color: #0056b3; } #result { margin-top: 20px; padding: 15px; background-color: #e9ecef; border: 1px solid #ced4da; border-radius: 4px; } #result h4 { margin-top: 0; color: #333; } #result p { margin-bottom: 5px; font-size: 1.1em; } code { background-color: #eef; padding: 2px 5px; border-radius: 3px; font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; }

Leave a Comment