Calculate Mortgage Payments

.valuation-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 8px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .valuation-calc-container h2 { color: #2c3e50; text-align: center; margin-bottom: 25px; font-size: 28px; } .val-input-group { margin-bottom: 15px; } .val-input-group label { display: block; font-weight: 600; margin-bottom: 5px; color: #34495e; } .val-input-group input, .val-input-group select { width: 100%; padding: 12px; border: 1px solid #ccd1d9; border-radius: 4px; box-sizing: border-box; font-size: 16px; } .val-btn { width: 100%; background-color: #27ae60; color: white; padding: 15px; border: none; border-radius: 4px; font-size: 18px; font-weight: bold; cursor: pointer; margin-top: 10px; transition: background-color 0.3s; } .val-btn:hover { background-color: #219150; } #valuationResult { margin-top: 25px; padding: 20px; background-color: #f8f9fa; border-radius: 4px; border-left: 5px solid #27ae60; display: none; } .valuation-article { margin-top: 40px; line-height: 1.6; color: #444; } .valuation-article h3 { color: #2c3e50; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-top: 30px; } .example-box { background-color: #eef2f7; padding: 15px; border-radius: 4px; margin: 15px 0; }

Business Valuation Calculator (SDE Multiple)

How to Value a Small Business

Determining the value of a business is a critical step for both buyers and sellers. This calculator uses the Earnings Multiple Method, which is the most common approach for small to mid-sized enterprises (SMEs). This method focuses on the "Seller's Discretionary Earnings" (SDE).

What is SDE (Seller's Discretionary Earnings)?

SDE is the total financial benefit a single full-time owner-operator derives from the business. To calculate SDE, start with your net profit and "add back" expenses that a new owner might not have, such as:

  • Owner's salary and bonuses
  • Non-cash expenses (depreciation and amortization)
  • Interest expenses
  • One-time non-recurring expenses (e.g., legal fees for a specific settlement)
  • Personal expenses run through the business (e.g., personal vehicle or health insurance)

Understanding the Multiple

The multiple is a factor used to multiply the SDE to reach a base valuation. Most small businesses trade between a 1.5x and 4.0x multiple. High-growth tech companies or businesses with "recurring" revenue (SaaS) often command higher multiples, while service businesses with high owner-dependency often see lower multiples.

Realistic Example:
If a local landscaping company has an SDE of $200,000 and the average industry multiple is 2.5x, the base value is $500,000. If they have $50,000 in inventory and $20,000 in debt, the final estimated value is ($500,000 + $50,000 – $20,000) = $530,000.

Factors That Increase Your Multiple

If you want to sell your business for a higher price, focus on improving these areas:

  • Reduced Owner Dependency: Can the business run without you for a month?
  • Revenue Diversity: No single customer accounts for more than 10-15% of sales.
  • Clean Financials: Professional, verifiable tax returns and P&L statements.
  • Growth Trends: A business with increasing year-over-year profits commands a premium.
function calculateBusinessValuation() { var profit = parseFloat(document.getElementById('netProfit').value); var multiple = parseFloat(document.getElementById('industryMultiple').value); var inventory = parseFloat(document.getElementById('inventoryValue').value) || 0; var debt = parseFloat(document.getElementById('businessDebt').value) || 0; var resultDiv = document.getElementById('valuationResult'); if (isNaN(profit) || isNaN(multiple)) { resultDiv.style.display = "block"; resultDiv.innerHTML = "Error: Please enter valid numbers for Annual Profit and Industry Multiple."; return; } // Formula: (SDE * Multiple) + Inventory – Debt var baseValuation = profit * multiple; var totalValuation = baseValuation + inventory – debt; // Format currency var formattedTotal = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(totalValuation); var formattedBase = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD' }).format(baseValuation); resultDiv.style.display = "block"; resultDiv.innerHTML = "

Estimated Business Value: " + formattedTotal + "

" + "" + "" + "" + "" + "" + "
Base Earnings Value:" + formattedBase + "
Inventory (Added):+ " + inventory.toLocaleString('en-US', {style: 'currency', currency: 'USD'}) + "
Outstanding Debt (Subtracted):– " + debt.toLocaleString('en-US', {style: 'currency', currency: 'USD'}) + "
Final Valuation:" + formattedTotal + "
"; }

Leave a Comment