What Is Startup Burn Multiple?
Spending money does not automatically mean a startup is in trouble. I have watched companies invest in product development, hiring, and sales before the return became visible. The useful question is narrower: how much new recurring revenue does each unit of cash create?
Startup burn multiple measures capital efficiency by dividing the net cash a company consumes during a period by the new annualized recurring revenue created during that same period. A lower ratio generally means the company is using cash more efficiently to produce new revenue.
The detail that causes most confusion is net new ARR. Existing customers may continue generating $100,000 in recurring revenue without adding any growth. That $100,000 should not count as new ARR. Churn, downgrades, and account expansion belong in the calculation.
The formula is simple
I use the following formula when the cash and ARR periods match:
Burn Multiple = Net Burn / Net New ARRNet burn is operational cash outflow minus operational cash inflow. Net new ARR is ending ARR minus beginning ARR.
Net Burn = Operational Cash Outflows - Operational Cash Inflows
Net New ARR = Ending ARR - Beginning ARR
Burn Multiple = Net Burn / Net New ARRThis measures cash consumption, not accounting profit. An invoice recorded but not collected, one-off consulting revenue, and funding proceeds can all distort the result. I keep investment proceeds completely outside operational cash inflows.
Here is a small example. A startup consumes $300,000 of net cash over three months, while ARR rises from $1.2 million to $1.65 million.
Net Burn = $300,000
Net New ARR = $1,650,000 - $1,200,000 = $450,000
Burn Multiple = $300,000 / $450,000 = 0.67xA result of 0.67x means the company used about 67 cents of net cash for each dollar of new annualized recurring revenue. Good or bad depends on stage, growth rate, gross margin, and market. The ratio cannot make that decision alone.
Gross burn is not net burn
I often see these two figures mixed together in startup reports. Gross burn is the total operating cash outflow before revenue is considered. Salaries, office costs, cloud infrastructure, advertising, consulting, and other operating expenses belong there.
Net burn subtracts operational cash revenue from those expenses. Burn multiple normally uses net burn. For runway planning, I still track both. If customer payments arrive late, the immediate cash requirement can move much closer to gross burn.
| Metric | What it shows | Where it helps |
|---|---|---|
| Gross burn | Monthly cash outflow before revenue | Maximum cash need and cost planning |
| Net burn | Cash consumed after revenue | Burn multiple and practical runway |
| Burn multiple | Cash cost of producing new revenue | Capital efficiency and fundraising preparation |
Why not use gross burn? A company producing $200,000 in operational revenue is not in the same position as a company producing nothing, even if their expenses are identical. Ignoring revenue removes a key part of the sales-efficiency picture.
Choose the right ARR
Before calculating anything, I write down exactly what ARR includes. For a SaaS company, active recurring subscription revenue is the natural starting point. An annual contract paid upfront still needs a clear definition; I do not automatically treat the whole payment as ARR.
- Active recurring subscription revenue can be included in ARR.
- One-time implementation, consulting, and custom development revenue should stay separate.
- Discounted trials need careful treatment before they enter the number.
- Churned customers and downgrades must reduce net new ARR.
- Unsigned opportunities never belong in ARR.
If a customer signs a 12-month contract but will not pay the first invoice for three months, I keep two tables. The ARR table shows the commercial commitment; the cash table shows collection. Mixing them is especially misleading in a fast-growing company.
Reading the ratio in context
As a rough guide, a ratio below 1x can indicate efficient capital use. A result between 1x and 2x may be reasonable for some early-stage companies. A higher figure deserves a closer look at product-market fit, sales channels, pricing, and operating costs.
These are reference points, not laws. A pre-revenue startup cannot calculate a meaningful burn multiple because net new ARR is zero or close to it. A company entering a new market may also accept a temporarily high ratio while it builds sales capacity.
I do not trust one quarter on its own. I place the trailing three-, six-, and twelve-month periods side by side. One large annual contract can make a month look spectacular, while a delayed renewal payment can make the next one look terrible.
| Burn multiple | Possible interpretation | What to inspect |
|---|---|---|
| 0-1x | New revenue may be generated efficiently | Revenue durability and gross margin |
| 1-2x | May be acceptable at an early stage | Sales payback and growth rate |
| 2-3x | Capital consumption deserves attention | Pricing, churn, and sales efficiency |
| Above 3x | Planning assumptions need questioning | CAC and spending discipline |
Investors usually read this alongside growth rate, gross margin, net revenue retention, CAC payback, and runway. Two companies can have the same burn multiple, while the one with better gross margin and lower churn is in a much stronger position.
A reporting mistake with a real cost
While reviewing a SaaS customer’s cash report, I found funding proceeds classified as operational cash inflow. I had seen the formula produce a neat result and initially trusted the spreadsheet instead of checking the source categories. The numerator no longer described operating activity.
Once we moved the investment proceeds to a separate line, net burn increased and the burn multiple looked worse. That was useful, not alarming. We were seeing the company’s operating position clearly for the first time.
I no longer trust a single total cell for this work. Bank movements, invoices, and ARR changes live on separate sheets, and I explain the difference at each month-end close. A missing explanation is more valuable than a polished ratio in an investor deck.
Burn multiple is not CAC
In How to Calculate Startup CAC: Customer Acquisition Cost, we look at sales and marketing spending divided by the number of new customers acquired. Burn multiple covers much more: product, engineering, operations, management, and every other operational cash cost are part of it.
That is why CAC can fall while burn multiple rises. A company may acquire customers more cheaply while carrying an oversized team, expensive infrastructure, or an office nobody uses. The reverse happens too. One enterprise deal can make burn multiple look healthy while CAC remains painfully high.
Track both. A low burn multiple is not a lasting advantage if CAC payback takes too long. Sales expenses leave the bank account today, while related revenue may arrive months later. Cash timing matters.
Connect burn multiple to runway
Runway estimates how many months a company can operate with its current cash balance. The simple version is:
Runway (months) = Cash on Hand / Monthly Net BurnIf monthly net burn was $150,000, $210,000, and $270,000 over the last three months, the average is $210,000. With $2.1 million in cash, the rough runway is ten months. If burn multiple is rising, future cash consumption may rise too, so I do not use the historical average blindly.
I prepare three scenarios:
- Base case: the current sales pace and spending plan continue.
- Cautious case: acquisition slows, churn increases, and some collections are delayed.
- Cutback case: hiring stops, low-return channels close, and nonessential spending is postponed.
Burn multiple and runway change together in each scenario. Do not ask only, “How many months of cash do we have?” Ask what revenue level that cash should produce.
A practical monthly reporting table
These fields are enough to establish a useful monthly close:
- Beginning and ending cash
- Operational cash inflows
- Operational cash outflows
- Beginning and ending ARR
- New customer ARR
- ARR lost to churn and downgrades
- Net burn, net new ARR, and burn multiple
- Runway and the next funding requirement
Every line needs a clear source. ARR should come from the CRM, collections from the bank or accounting system, and expenses from actual cash movements. A CRM “closed won” record is not the same as a bank collection. I have had to explain that difference more than once.
If you want to check a small data set with Python, this example calculates the ratio:
net_burn = 300000
begin_arr = 1200000
end_arr = 1650000
net_new_arr = end_arr - begin_arr
burn_multiple = net_burn / net_new_arr
print(f"{burn_multiple:.2f}x")The output is 0.67x. The code is easy. Proving that the cash and ARR values cover the same period is the hard part.
Where to improve the ratio
A high burn multiple should not trigger an automatic decision to cut the whole team. First separate the causes. Did the ARR denominator shrink, or did the cash numerator grow?
Start with revenue
- Does pricing reflect the value customers receive?
- Where do trial users disappear before becoming paying customers?
- Do churned customers share a usage pattern or industry?
- Is sales focused on low-priced customers that require heavy support?
Raising prices is not always the answer. Simpler packages, a clear minimum contract value, or paid implementation can produce a healthier result.
Break down spending
Do not treat payroll as one undifferentiated line. Separate each team’s contribution to revenue from its essential operational workload. Unused server capacity, abandoned SaaS licenses, and low-converting advertising campaigns are sensible places to look first.
I see a similar pattern in hosting. Companies sometimes multiply their capacity before their customer count grows, then label the cost a growth investment. That investment may be right, but the report should show what it is buying.
Cutting product and security work simply because it does not create ARR this month is also a mistake. Backups, monitoring, access control, and fault tolerance may not appear directly in revenue, but their absence becomes visible during an outage. Efficiency is not blind cost cutting.
Common investor deck mistakes
The most common mistake is selecting the best quarter and presenting it as the general trend. Another is calculating burn multiple from gross burn while ignoring revenue. Put the definition in the footnote: What period is used? How is net burn calculated? Does net new ARR include churn?
Do not confuse ARR with total revenue. ARR may be the wrong measure for an e-commerce or project-based company. Net burn divided by net new revenue, contribution margin, and cash conversion time may tell that business more.
During fundraising, document organization matters alongside financial records. What Is a Startup Data Room? An Investor Readiness Guide explains how contracts, financial statements, and operating records can be organized. Evidence behind the ratio is more convincing than a shiny graph.
When the metric misleads
In the pre-revenue period, the denominator is close to zero, so the result has little meaning. In an enterprise business with a long sales cycle, a sales team may work for months before new ARR appears in a later quarter. Seasonal businesses also need more than one quarterly comparison.
A large annual contract can make burn multiple look exceptionally low. If renewal is uncertain, usage is weak, or collection is at risk, that contract is not proof of lasting efficiency.
Check capital expenses and one-time costs too. A new data center investment or a large legal bill can distort several months of results. Put it on a separate line and explain it.
Build a reliable tracking habit
Close the books on the same day each month. Review cash first, ARR second, and burn multiple third. Compare the change with the previous period and the trailing twelve-month average.
I would put three questions on the dashboard instead of one score: How much cash did we spend to create new revenue? How durable is that revenue? If the current pace continues, when does cash reach a critical level?
Startup burn multiple is not a health grade. It makes the relationship between capital consumed and new revenue visible. In my reports, the most valuable line is often the note explaining why the ratio changed.
Frequently asked questions
What is a good startup burn multiple?
There is no universal threshold. A ratio between 1x and 2x may be reasonable for an early-stage company, while a result below 1x generally points to more efficient capital use. Growth rate, gross margin, churn, and sales-cycle length need to be considered together.
Should I calculate it monthly?
You can calculate it monthly, but one-month changes may mislead you. Tracking three-, six-, and twelve-month rolling periods gives a clearer view of large contracts and delayed collections.
Is burn multiple the same as CAC?
No. CAC measures the cost of acquiring a new customer. Burn multiple compares total operational net cash consumption with the net new ARR created. Using both separates sales efficiency from overall capital efficiency.
Can a startup with no revenue calculate it?
If net new ARR is zero, the classic calculation cannot produce a meaningful result. At that stage, gross burn, net burn, runway, product-validation signals, and the sales pipeline are more useful. I would rather see an honest “not meaningful yet” than a denominator invented to make a deck look complete.





