How to Calculate Substantial Growth Rate

Sustainable Growth Rate (SGR) Calculator

Calculation Results

Sustainable Growth Rate (SGR): 0%

Retention Ratio: 0%

function calculateSGR() { var roe = parseFloat(document.getElementById("roeInput").value); var payout = parseFloat(document.getElementById("payoutRatio").value); var resultArea = document.getElementById("resultArea"); var sgrValue = document.getElementById("sgrValue"); var retentionValue = document.getElementById("retentionValue"); var interpretation = document.getElementById("interpretation"); if (isNaN(roe) || isNaN(payout)) { alert("Please enter valid numerical values for both ROE and Payout Ratio."); return; } // Calculation Logic // Retention Ratio (b) = 1 – Payout Ratio var b = (100 – payout) / 100; // SGR = ROE * b var sgr = (roe / 100) * b; var sgrPercentage = sgr * 100; // Display Results resultArea.style.display = "block"; sgrValue.innerHTML = sgrPercentage.toFixed(2) + "%"; retentionValue.innerHTML = (b * 100).toFixed(2) + "%"; // SEO Interpretation if (sgrPercentage > 20) { interpretation.innerHTML = "Analysis: This indicates a very high potential for internal growth. Ensure your operational efficiency can keep up with this rate."; } else if (sgrPercentage > 10) { interpretation.innerHTML = "Analysis: This is a healthy sustainable growth rate for most established companies."; } else { interpretation.innerHTML = "Analysis: Growth is modest. To increase this rate, consider improving profitability (ROE) or retaining more earnings."; } }

How to Calculate Sustainable Growth Rate (SGR)

The Sustainable Growth Rate (SGR) is a critical financial metric that represents the maximum rate of growth a company or project can achieve without needing to fund that growth with additional equity or debt. Understanding how to calculate substantial growth potentials allows business owners and investors to see if a company is overextending itself.

The SGR Formula

The standard formula used in our calculator is:

SGR = Return on Equity (ROE) × Retention Ratio

Components Explained:

  • Return on Equity (ROE): This measures profitability by revealing how much profit a company generates with the money shareholders have invested. It is calculated as Net Income / Shareholder's Equity.
  • Retention Ratio: This is the proportion of earnings kept by the business rather than paid out as dividends. It is calculated as 1 – Dividend Payout Ratio.

Step-by-Step Calculation Example

Imagine a tech startup with the following financial data:

  • ROE: 20%
  • Dividend Payout: 25% of earnings

Step 1: Calculate the Retention Ratio.
1 – 0.25 = 0.75 (or 75%).

Step 2: Multiply ROE by the Retention Ratio.
0.20 × 0.75 = 0.15.

Step 3: Convert to a percentage.
The Sustainable Growth Rate is 15%.

Why Tracking SGR Matters

If a company's actual sales growth exceeds its SGR, it will eventually run out of cash and be forced to take on new debt or issue more shares. Conversely, if a company grows slower than its SGR, it is accumulating cash that isn't being put to work efficiently. Using this calculator helps you find the "sweet spot" of growth where the business remains self-funding and financially stable.

Key Factors That Influence Growth Rate

To improve your substantial growth rate, a business can focus on four main levers:

  1. Profit Margins: Increasing the amount of profit made on every dollar of sales.
  2. Asset Turnover: Using assets more efficiently to generate more sales.
  3. Financial Leverage: Optimizing the debt-to-equity ratio.
  4. Dividend Policy: Retaining more earnings instead of paying them out to owners.

Leave a Comment