Gross Burn Rate Calculator

#burn-calc-wrapper { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9fafb; color: #333; } .burn-calc-header { text-align: center; margin-bottom: 30px; } .burn-calc-header h2 { color: #1a202c; margin-bottom: 10px; } .burn-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; } @media (max-width: 600px) { .burn-calc-grid { grid-template-columns: 1fr; } } .burn-input-group { display: flex; flex-direction: column; } .burn-input-group label { font-weight: 600; margin-bottom: 8px; font-size: 14px; color: #4a5568; } .burn-input-group input { padding: 12px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 16px; } .burn-calc-btn { background-color: #3182ce; color: white; border: none; padding: 15px 30px; font-size: 18px; font-weight: bold; border-radius: 6px; cursor: pointer; width: 100%; transition: background-color 0.2s; } .burn-calc-btn:hover { background-color: #2b6cb0; } #burn-result-area { margin-top: 30px; padding: 20px; background-color: #fff; border-radius: 6px; border-left: 5px solid #3182ce; display: none; } .result-item { display: flex; justify-content: space-between; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #edf2f7; } .result-item:last-child { border-bottom: none; } .result-label { font-weight: 500; color: #718096; } .result-value { font-weight: 700; color: #2d3748; font-size: 18px; } .article-section { margin-top: 40px; line-height: 1.6; } .article-section h3 { color: #2d3748; margin-top: 25px; }

Gross Burn Rate & Runway Calculator

Calculate your startup's monthly cash outflow and estimated survival time.

Monthly Gross Burn Rate: $0.00
Annual Gross Burn Rate: $0.00
Estimated Cash Runway: 0 Months

What is Gross Burn Rate?

Gross burn rate represents the total amount of cash a company spends each month to keep its doors open, regardless of revenue. It is a critical metric for startups and early-stage companies to track because it reveals the absolute cost of operations.

Unlike Net Burn Rate (which subtracts revenue from expenses), Gross Burn Rate looks only at the outflow. This is essential for understanding your "worst-case scenario" if revenue were to suddenly stop or fail to materialize.

How to Calculate Gross Burn Rate

The formula for Gross Burn Rate is simple: add up every single operating expense incurred during the month. This typically includes:

  • Payroll: Salaries, taxes, benefits, and contractor fees.
  • Facilities: Rent, utilities, and insurance.
  • Growth: Marketing budgets, advertising spend, and sales tools.
  • Technology: Software subscriptions (SaaS), server costs, and hardware.

Formula: Gross Burn = Salaries + Rent + Marketing + G&A + Tech Costs

Understanding Cash Runway

Your cash runway is the amount of time your business has before it runs out of money, assuming your burn rate and cash balance stay constant. It is calculated by dividing your current cash balance by your monthly gross burn rate.

For example, if you have $500,000 in the bank and your monthly gross burn is $50,000, you have a 10-month runway. This metric tells founders exactly how much time they have to reach profitability or secure the next round of funding.

Example Calculation

Imagine a startup with the following monthly costs:

  • Salaries: $30,000
  • Office Rent: $4,000
  • Marketing: $6,000
  • Software Subscriptions: $2,000

The Monthly Gross Burn Rate would be $42,000. If that company has $252,000 in their bank account, their Runway is exactly 6 months ($252,000 / $42,000).

Strategies to Manage Burn Rate

Managing burn is a balancing act between growth and survival. Common strategies include:

  1. Focus on Unit Economics: Ensure that every dollar spent on marketing brings in more than a dollar in lifetime value.
  2. Variable vs. Fixed Costs: Keep fixed costs (like long-term office leases) low in favor of variable costs that can be scaled down quickly if needed.
  3. Extending Runway: Many founders aim for at least 18 months of runway to provide enough time to navigate market downturns or fundraising cycles.
function calculateBurnRate() { var salaries = parseFloat(document.getElementById('monthlySalaries').value) || 0; var rent = parseFloat(document.getElementById('monthlyRent').value) || 0; var marketing = parseFloat(document.getElementById('monthlyMarketing').value) || 0; var other = parseFloat(document.getElementById('monthlyOther').value) || 0; var cash = parseFloat(document.getElementById('cashOnHand').value) || 0; // Calculation logic var monthlyGrossBurn = salaries + rent + marketing + other; var annualGrossBurn = monthlyGrossBurn * 12; var runway = 0; if (monthlyGrossBurn > 0) { runway = cash / monthlyGrossBurn; } // Displaying results document.getElementById('resGrossBurn').innerText = '$' + monthlyGrossBurn.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); document.getElementById('resAnnualBurn').innerText = '$' + annualGrossBurn.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}); var runwayDisplay = document.getElementById('resRunway'); if (monthlyGrossBurn === 0) { runwayDisplay.innerText = 'Infinite (No Spend)'; } else { runwayDisplay.innerText = runway.toFixed(1) + ' Months'; } // Show result area document.getElementById('burn-result-area').style.display = 'block'; }

Leave a Comment