1. Scope
Quantifies the opportunity cost of a project that ran over its scoped hours. Compares quoted price versus actual effort to expose the effective hourly rate. It does not prescribe change-order process.
2. Inputs and outputs
Inputs
- project_quote number (currency)
The fixed price you quoted.
- billable_rate number (currency)
Your standard hourly rate — used to value unpaid hours.
- quoted_hours number
- actual_hours number
- projects_per_year number
Scales the per-project loss into an annual figure.
Outputs
- effectiveHourlyRate
project_quote / actual_hours.
- rateCollapsePercent
How far the effective rate falls below billable_rate.
- unpaidHours
actual_hours − quoted_hours.
- unpaidHoursValue
unpaidHours × billable_rate.
- annualCreepLoss
unpaidHoursValue × projects_per_year.
- scopeCreepTaxPercent / overrunPercent
Creep as a share of the quote, and hours overrun percent.
Engine source: src/lib/scope-creep-cost-calculator/engine.ts
3. Formula / scoring logic
effective_hourly = project_quote / actual_hours
unpaid_hours = actual_hours - quoted_hours
unpaid_value = unpaid_hours * billable_rate
annual_creep_loss = unpaid_value * projects_per_year 4. Assumptions
- Unpaid hours are valued at your billable_rate, not an opportunity-cost rate.
- The annual figure assumes the same overrun repeats across projects_per_year projects.
5. Data sources
This tool relies on user inputs and standard arithmetic; no external benchmark data is bundled. When a question depends on an industry reference (for example, typical churn rates or hourly-wage medians), the linked adjacent tools cite their primary sources on their own methodology pages.
6. Known limitations
- Retrospective. Does not prevent scope creep; it makes the cost visible after the fact.
- Ignores relationship value — a project run at a loss may still make sense if it leads to higher-margin follow-on work.
7. Reproducibility
Input
project_quote = $10,000, billable_rate = $150, quoted_hours = 80, actual_hours = 120, projects_per_year = 6.
Expected output
effectiveHourlyRate ≈ $83.33, rateCollapsePercent ≈ 44.45, unpaidHours = 40, unpaidHoursValue = $6,000, annualCreepLoss = $36,000, overrunPercent = 50.
8. Change log
- 2026-04-24 methodology page first published.
Worked example
Run live against the same engine this site ships
(/engines/scope-creep-cost-calculator.js).
The inputs and outputs below are recomputed on every build and
independently re-verified in CI — they are never hand-authored.
Input
- tool
- scope_creep_cost
- project_quote
- 5000
- billable_rate
- 100
- quoted_hours
- 50
- actual_hours
- 72
- projects_per_year
- 12
Output
- effectiveHourlyRate
- 69.44
- rateCollapsePercent
- 30.56
- unpaidHours
- 22
- unpaidHoursValue
- 2200
- annualCreepLoss
- 26400
- scopeCreepTaxPercent
- 44
- quotedTotal
- 5000
- actualTotal
- 7200
- overrunPercent
- 44
Frequently asked questions
- What does the Scope Creep Cost Calculator calculate?
- Quantifies the opportunity cost of a project that ran over its scoped hours. Compares quoted price versus actual effort to expose the effective hourly rate. It does not prescribe change-order process.
- What inputs does the Scope Creep Cost Calculator need?
- It takes 5 inputs: project_quote, billable_rate, quoted_hours, actual_hours, projects_per_year. Outputs returned: effectiveHourlyRate, rateCollapsePercent, unpaidHours, unpaidHoursValue, annualCreepLoss, scopeCreepTaxPercent / overrunPercent.
- What formula does the Scope Creep Cost Calculator use?
- The exact computation is: effective_hourly = project_quote / actual_hours; unpaid_hours = actual_hours - quoted_hours; unpaid_value = unpaid_hours * billable_rate; annual_creep_loss = unpaid_value * projects_per_year
- Can I verify the Scope Creep Cost Calculator with a worked example?
- Yes. With project_quote = $10,000, billable_rate = $150, quoted_hours = 80, actual_hours = 120, projects_per_year = 6. the tool returns effectiveHourlyRate ≈ $83.33, rateCollapsePercent ≈ 44.45, unpaidHours = 40, unpaidHoursValue = $6,000, annualCreepLoss = $36,000, overrunPercent = 50.
- Does the Scope Creep Cost Calculator bundle any external benchmark data?
- No. It runs standard arithmetic on the values you enter; no external benchmark dataset is bundled. Industry references, where relevant, are cited on the adjacent tools' methodology pages.
- What can the Scope Creep Cost Calculator not tell me?
- Known limitations: Retrospective. Does not prevent scope creep; it makes the cost visible after the fact. Ignores relationship value — a project run at a loss may still make sense if it leads to higher-margin follow-on work.