How to Calculate Startup Burn Rate

.burn-rate-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e4e8; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.05); } .burn-rate-header { text-align: center; margin-bottom: 30px; } .burn-rate-header h2 { color: #1a1f36; margin-bottom: 10px; } .input-group { margin-bottom: 20px; } .input-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #4f566b; } .input-group input { width: 100%; padding: 12px; border: 1px solid #dcdfe6; border-radius: 6px; box-sizing: border-box; font-size: 16px; } .calc-btn { width: 100%; padding: 15px; background-color: #5469d4; color: white; border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background-color 0.2s; } .calc-btn:hover { background-color: #2e3ed1; } .burn-results { margin-top: 30px; padding: 20px; background-color: #f7fafc; border-radius: 8px; display: none; } .result-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #e2e8f0; } .result-item:last-child { border-bottom: none; } .result-label { color: #4a5568; } .result-value { font-weight: 700; color: #2d3748; } .runway-alert { margin-top: 15px; padding: 10px; border-radius: 4px; text-align: center; font-weight: 600; } .article-section { margin-top: 40px; line-height: 1.6; color: #333; } .article-section h2 { color: #1a1f36; border-bottom: 2px solid #5469d4; padding-bottom: 8px; margin-top: 30px; } .article-section h3 { color: #2d3748; } .example-box { background-color: #fffaf0; border-left: 4px solid #ed8936; padding: 15px; margin: 20px 0; }

Startup Burn Rate & Runway Calculator

Analyze your startup's financial health and survival timeline.

Gross Burn Rate (Monthly):
Net Burn Rate (Monthly):
Estimated Runway:

How to Calculate Startup Burn Rate: A Complete Guide

For any startup founder, the "burn rate" is perhaps the most critical metric in the early stages of the business. It measures the rate at which a company is losing money—or spending its venture capital—before it reaches profitability or needs a new round of funding.

What is Burn Rate?

Burn rate refers to the amount of money your startup spends each month to stay in operation. It is typically calculated as a monthly figure. Understanding this metric allows you to determine your "runway," which is the amount of time you have before you run out of cash.

1. Gross Burn Rate

Gross burn is the total amount of spending your startup incurs every month. This includes salaries, rent, software subscriptions, server costs, and marketing. It doesn't take revenue into account.

Formula: Total Monthly Operating Expenses = Gross Burn

2. Net Burn Rate

Net burn is the actual amount of money you are losing each month. It is the difference between your gross burn and your revenue. If your revenue exceeds your expenses, you have a "negative burn" and are effectively profitable.

Formula: Gross Burn – Monthly Revenue = Net Burn

How to Calculate Your Runway

Once you know your net burn, calculating your runway is straightforward. This tells you how many months your business can survive at its current spending level.

Runway Formula: Total Cash Balance / Net Burn Rate = Months of Runway

Realistic Calculation Example

Let's look at a typical Seed-stage SaaS startup:

  • Starting Cash: $600,000
  • Gross Monthly Expenses: $45,000 (Salaries, AWS, Office)
  • Monthly Revenue: $5,000
  • Net Burn: $40,000 ($45k – $5k)
  • Runway: 15 Months ($600,000 / $40,000)

In this scenario, the founder has 15 months to either reach profitability or secure Series A funding before the bank account hits zero.

Strategies to Extend Your Runway

If your burn rate is too high, you have three primary levers to pull:

  1. Reduce Expenses: Cut non-essential software, renegotiate vendor contracts, or optimize marketing spend.
  2. Increase Revenue: Focus on high-converting sales channels or adjust pricing models to bring in cash faster.
  3. Raise Capital: Start the fundraising process at least 6 months before your runway ends.
function calculateBurn() { var cash = parseFloat(document.getElementById('cashBalance').value); var expenses = parseFloat(document.getElementById('monthlyExpenses').value); var revenue = parseFloat(document.getElementById('monthlyRevenue').value); var resultsArea = document.getElementById('resultsArea'); var displayGross = document.getElementById('displayGross'); var displayNet = document.getElementById('displayNet'); var displayRunway = document.getElementById('displayRunway'); var warning = document.getElementById('runwayWarning'); if (isNaN(cash) || isNaN(expenses) || isNaN(revenue)) { alert("Please enter valid numbers for all fields."); return; } var netBurn = expenses – revenue; resultsArea.style.display = "block"; displayGross.innerHTML = "$" + expenses.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); displayNet.innerHTML = "$" + netBurn.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); if (netBurn <= 0) { displayRunway.innerHTML = "Infinite (Profitable)"; warning.innerHTML = "Congratulations! Your startup is cash-flow positive."; warning.style.backgroundColor = "#c6f6d5"; warning.style.color = "#22543d"; } else { var runway = cash / netBurn; displayRunway.innerHTML = runway.toFixed(1) + " Months"; if (runway < 6) { warning.innerHTML = "Warning: Critical runway level. Consider fundraising or cost-cutting immediately."; warning.style.backgroundColor = "#fed7d7"; warning.style.color = "#822727"; } else if (runway < 12) { warning.innerHTML = "Caution: Runway is under 12 months. Start planning your next move."; warning.style.backgroundColor = "#feebc8"; warning.style.color = "#744210"; } else { warning.innerHTML = "Healthy runway. Focus on growth and optimization."; warning.style.backgroundColor = "#bee3f8"; warning.style.color = "#2a4365"; } } }

Leave a Comment