Savings Interest Rate Comparison Calculator

.val-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 30px; border: 1px solid #e1e1e1; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 20px rgba(0,0,0,0.08); color: #333; } .val-calc-header { text-align: center; margin-bottom: 30px; } .val-calc-header h2 { color: #1a365d; margin-bottom: 10px; font-size: 28px; } .val-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .val-calc-grid { grid-template-columns: 1fr; } } .val-input-group { display: flex; flex-direction: column; } .val-input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #4a5568; } .val-input-group input, .val-input-group select { padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; transition: border-color 0.2s; } .val-input-group input:focus { border-color: #3182ce; outline: none; } .val-btn { grid-column: span 2; background-color: #2b6cb0; color: white; padding: 15px; border: none; border-radius: 6px; font-size: 18px; font-weight: bold; cursor: pointer; transition: background-color 0.2s; } @media (max-width: 600px) { .val-btn { grid-column: span 1; } } .val-btn:hover { background-color: #2c5282; } .val-result-box { margin-top: 30px; padding: 25px; background-color: #f7fafc; border-radius: 8px; border-left: 5px solid #2b6cb0; display: none; } .val-result-item { display: flex; justify-content: space-between; margin-bottom: 10px; border-bottom: 1px dashed #cbd5e0; padding-bottom: 5px; } .val-result-item:last-child { border-bottom: none; margin-top: 15px; font-size: 1.2em; font-weight: bold; color: #2d3748; } .val-currency { color: #2f855a; } .val-content-section { margin-top: 50px; line-height: 1.6; color: #4a5568; } .val-content-section h2 { color: #2d3748; border-bottom: 2px solid #edf2f7; padding-bottom: 10px; } .val-content-section h3 { color: #2b6cb0; margin-top: 25px; } .val-example { background: #fffaf0; padding: 20px; border-radius: 8px; border: 1px solid #feebc8; margin: 20px 0; }

Business Valuation Calculator (SDE Multiple Method)

Estimate the market value of your small business based on Seller's Discretionary Earnings.

1.5x (High Risk/Micro) 2.0x (Average Service/Retail) 2.5x (Stable/Established) 3.0x (Strong Growth/Systems) 3.5x (High Margin/Proprietary) 4.0x (Low Risk/Market Leader)
Total Add-backs: $0
Total SDE (Earnings): $0
Valuation Multiple: 2.0x
Estimated Business Value: $0

How to Value a Small Business

Valuing a small business is often more of an art than a science. For most main-street businesses (those with revenue under $5 million), the most common method is the Seller's Discretionary Earnings (SDE) Multiple Method. This approach determines how much cash a single owner-operator can expect to take out of the business annually.

What is Seller's Discretionary Earnings (SDE)?

SDE is a calculation used to show the true earning power of a business. Because small business owners often try to minimize taxable income through legal expenses, we must "add back" certain items to the net profit to see the actual benefit available to a new owner.

Common Add-backs include:

  • Owner's Salary: Since a new owner will replace the old one, their compensation is part of the profit.
  • Depreciation: A non-cash expense that doesn't affect actual cash flow.
  • Interest: Debts are usually cleared at the time of sale, so interest expenses are added back.
  • One-time Expenses: Non-recurring costs like a website redesign, legal fees for a specific dispute, or a one-time equipment repair.
Realistic Example:
A local coffee shop shows a Net Profit of $50,000. The owner takes a Salary of $60,000. They have $10,000 in Depreciation and paid $5,000 in Interest. They also had a one-time Roof Repair for $5,000.

SDE Calculation: $50k + $60k + $10k + $5k + $5k = $130,000 Total SDE.
If similar coffee shops sell for a 2.5x multiple, the business value would be: $130,000 × 2.5 = $325,000.

Understanding Multiples

The multiple is a factor of risk and growth potential. A business with documented processes, a loyal customer base, and high barriers to entry will command a higher multiple (3x+). A business heavily reliant on the specific skills of the current owner or located in a declining industry may see a lower multiple (1.5x – 2x).

function calculateBusinessValue() { // Retrieve inputs var netProfit = parseFloat(document.getElementById('netProfit').value) || 0; var ownerSalary = parseFloat(document.getElementById('ownerSalary').value) || 0; var depreciation = parseFloat(document.getElementById('depreciation').value) || 0; var interestExp = parseFloat(document.getElementById('interestExp').value) || 0; var addBacks = parseFloat(document.getElementById('addBacks').value) || 0; var multiple = parseFloat(document.getElementById('bizMultiple').value) || 1; // Validation – prevent negative or zero calculations if inputs are empty if (netProfit === 0 && ownerSalary === 0) { alert("Please enter at least the Net Profit or Owner's Salary."); return; } // Logic var totalAddBacks = ownerSalary + depreciation + interestExp + addBacks; var totalSDE = netProfit + totalAddBacks; var finalValuation = totalSDE * multiple; // Formatting var formatter = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', maximumFractionDigits: 0 }); // Update UI document.getElementById('resAddBacks').innerText = formatter.format(totalAddBacks); document.getElementById('resSDE').innerText = formatter.format(totalSDE); document.getElementById('resMultiple').innerText = multiple + "x"; document.getElementById('resFinalValue').innerText = formatter.format(finalValuation); // Show result box document.getElementById('resultBox').style.display = 'block'; // Scroll to results on mobile document.getElementById('resultBox').scrollIntoView({ behavior: 'smooth', block: 'nearest' }); }

Leave a Comment