Return on RenoRenovation ROI Intelligence
Methodology

How we calculate renovation cost & ROI

Return on Reno gives planning estimates, not appraisals. This page publishes exactly how each number on the site is built — the data basis, the formulas, every multiplier and exchange rate, the Reno Score weights, the expected uncertainty, and the limits — so an independent reader can reproduce any figure on the site and know how much weight to put on it.

The short version

Every cost figure is a single US national benchmark for that project, scaled by your chosen finish level, scope, and city, then shown in your currency at a fixed exchange rate. The resale-recovery percentage (“ROI”) is a US national Cost-vs-Value-style average and is not re-measured per city. That has one important consequence, stated plainly below: our per-city figures are a US-derived proxy adjusted for local cost levels, not independently sourced local market datasets.

Data basis — and its honest limits

The two starting numbers for each project — a national midrange cost benchmark (baseUSD) and a national midrange recouped-percentage (roi) — are compiled from published US national “Cost vs. Value”-style remodeling data and industry cost guides, cross-checked against contractor pricing ranges, for the 2026 cycle. The full set of base figures for all 41 projects is visible on each project's own cost page and in the site's open-source data file (app/lib/projects.js).

Regional figures are derived, not separately sourced. We do not hold an independent, locally-sourced cost and resale dataset for every city. Instead, each city applies a single cost multiplier to the US benchmark and converts to local currency at a fixed rate. The recouped percentage is carried over unchanged from the US benchmark. So a figure like “Auckland, 74% recouped” means “the US national recouped percentage, applied to an Auckland-adjusted cost” — not an observed New Zealand resale result. We are consolidating and rebuilding these city pages against verifiable local data; until then they are held out of search indexing and labelled as proxies.

The exact calculation (so you can reproduce it)

Every figure comes from four inputs and a few short formulas. Nothing is hidden or random. For a project with national benchmark baseUSD and national recouped-percentage roi:

cost (USD)   = baseUSD × finishMultiplier × scope × regionMultiplier
recouped %   = clamp(roi + finishRoiAdjust, 8, 160)
valueAdded   = cost × (recouped % ÷ 100)
netCost      = cost − valueAdded
displayed    = value × fxRate        (for your selected currency)

scope is the 0.5×–1.5× slider (default 1.0). clamp(x, 8, 160) keeps the recouped percentage between 8% and 160%. That is the entire cost/ROI engine.

Finish-level factors

The finish level scales the cost benchmark and shifts the recouped percentage by a fixed amount:

Finish levelCost multiplierRecouped-% adjust
Smart refresh (budget)0.6×+6
Balanced upgrade (midrange)1×0
Luxury finish (upscale)1.9×-13
Statement renovation (statement)2.8×-24

Higher finishes cost more but recoup a smaller share — buyers rarely pay a full premium for finishes beyond what's normal for the neighbourhood, which is the core mechanic behind overcapitalising.

Regional cost multipliers (complete table)

Each city applies this cost multiplier to the US national benchmark. It scales the cost only; the recouped percentage stays at the project's US benchmark. These are the exact multipliers used by the live calculator:

United StatesCost multiplier vs US average
US National Average1.00×
New York, NY1.30×
Los Angeles, CA1.22×
Chicago, IL1.10×
Houston, TX0.98×
Phoenix, AZ0.97×
Miami, FL1.08×
Seattle, WA1.22×
Denver, CO1.08×
Atlanta, GA0.98×
Boston, MA1.26×
San Francisco, CA1.38×
Washington, DC1.13×
Philadelphia, PA1.15×
Minneapolis, MN1.07×
Austin, TX0.89×
Dallas, TX0.87×
San Diego, CA1.18×
Portland, OR1.13×
Nashville, TN0.95×
Charlotte, NC0.92×
Tampa, FL0.98×
San Antonio, TX0.88×
Las Vegas, NV0.95×
Orlando, FL0.95×
Raleigh, NC0.93×
Detroit, MI0.90×
United KingdomCost multiplier vs US average
London, UK1.05×
Manchester, UK0.90×
Birmingham, UK0.88×
Edinburgh, UK0.98×
Glasgow, UK0.89×
Bristol, UK0.95×
Leeds, UK0.88×
Liverpool, UK0.85×
Cardiff, UK0.83×
IrelandCost multiplier vs US average
Dublin, IE1.08×
CanadaCost multiplier vs US average
Toronto, CA1.05×
Vancouver, CA1.12×
Calgary, CA0.97×
Montreal, CA0.90×
Ottawa, CA0.88×
AustraliaCost multiplier vs US average
Sydney, AU1.10×
Melbourne, AU1.02×
Brisbane, AU1.05×
Perth, AU1.07×
Adelaide, AU0.90×
Gold Coast, AU1.06×
Canberra, AU1.00×
New ZealandCost multiplier vs US average
Auckland, NZ1.08×
Wellington, NZ1.03×
Christchurch, NZ0.97×

Fixed reference exchange rates

Figures are computed in USD, then displayed at a fixed reference exchange rate — we don't pull live FX, because day-to-day swings shouldn't move a planning estimate. These rates are reviewed periodically as part of each methodology version:

CurrencyRate (per USD 1.00)
USDUnited States1.00
GBPUnited Kingdom0.79
EUREurozone0.92
CADCanada1.37
AUDAustralia1.52
NZDNew Zealand1.65

Worked example

A bathroom remodel (baseUSD 25,000, national recouped 74%) at a balanced/midrange finish, US national:

For the same project in Sydney, multiply the cost by the Sydney multiplier (1.10) and display in AUD (× 1.52): 25,000 × 1.10 × 1.52 = A$41,800. The recouped percentage stays 74% — the US benchmark applied to a Sydney-adjusted cost, as explained above.

What “ROI” means here

On Return on Reno, ROI means the share of a project's cost that is typically reflected in a home's resale value — not a financial-investment return. A small number of projects (like garage door and entry door replacement) show ROI above 100%, meaning national data shows they often add more resale value than they cost. Most projects recoup less than their full cost, with the remainder buying you the use and enjoyment of the upgrade while you live there.

What “net cost” means

Net cost = estimated cost − estimated resale value added. It's the part of the spend you don't get back at sale, not a loss on the project as a whole. When resale value added exceeds cost, we show it as a net value gain instead.

The Reno Score (exact formula & weights)

The Reno Score is a 0–100 planning heuristic combining the recouped percentage, the finish tier's overcapitalisation risk, and the absolute cost. It is fully deterministic — the exact weights are:

roiPoints  = min(70, recouped% ÷ 140 × 70)          // up to 70 pts
tierPoints = { budget: 20, midrange: 15, upscale: 8, statement: 2 }
costPoints = max(0, 10 − min(10, costUSD ÷ 20000))  // up to 10 pts
score      = round( min(100, roiPoints + tierPoints + costPoints) )

Worked example (bathroom remodel, midrange, $25,000, 74% recouped): roiPoints = 74÷140×70 = 37, tierPoints = 15, costPoints = 10 − 1.25 = 8.75 → score 61/100. It's a comparison aid, not a valuation, appraisal, or guarantee of return.

Expected uncertainty

Treat every figure as a planning midpoint with a wide band around it. In practice:

Limitations

Update schedule & versioning

This methodology is versioned (currently 2026.08). Cost and ROI benchmarks, finish factors, regional multipliers and FX rates are reviewed as new “Cost vs. Value” data and regional cost guides are published — typically annually, with multipliers refreshed as we add or rebuild markets. The footer and each guide show the last reviewed date; material changes bump the version number here.

Why you should still get local quotes

Nothing here replaces 2–3 written quotes from licensed local contractors and a conversation with a local real-estate agent about what buyers in your specific market actually pay for. Return on Reno is built to help you walk into those conversations with realistic expectations — not to replace them.

Put it to work on your project

Run your own numbers with the calculator, or download the free worksheet to plan before you spend.

Calculate My Reno ROI →

Questions about a specific figure? Contact us. See also our about page and affiliate disclosure.