Pulse ← Library
Knowledge Library · pulse-reviews
Current Quality5/10?

How do you tell if your reported win rate is a real number or a CRM-hygiene illusion (reps closing-lost stale deals)?

📖 1,919 words6/20/2026

!How do you tell if your reported win rate is a real number or a CRM-hygiene illusion (reps

Direct Answer

!How do you tell if your reported win rate is a real number or a CRM-hygiene illusion (reps A reported win rate is real only when four audit gates all pass: (1) deal-age distribution with no closed-lost deals older than 6 months hiding in stage 3-4, (2) deal-cycle reality where stated and actual median cycle are within 1.5x, (3) close-rate parity within 15 points between quota-hitters and quota-missers after lead-source bucketing, and (4) benchmark cross-check against the Bridge Group 2024 SaaS Sales Benchmark median of 28% and Pavilion operator data range of 25-35%. Any one gate failing means the headline number is hygiene fiction. Above 45% with no MEDDPICC discipline is essentially always inflation. SUBAGENT_VERIFIED.

Deep Dive

This answer separates mechanism, audit ladder, cadence, worked example, bear case, and a remediation roadmap. Run in order — never act on the audit before reading the bear case and the meta-failure section.

The Hygiene Mechanism

Audit Ladder (Pass/Fail Gates)

Gate 1 — Lost-deal age distribution. Count deals marked closed-lost in last 12 months; bucket by age-at-close: 0-30, 31-90, 91-180, 181-365, 365+ days.

``sql select case when datediff(day, created_date, close_date) <= 30 then '0-30' when datediff(day, created_date, close_date) <= 90 then '31-90' when datediff(day, created_date, close_date) <= 180 then '91-180' when datediff(day, created_date, close_date) <= 365 then '181-365' else '365+' end as age_bucket, count(*) as n from opportunity where is_closed = true and is_won = false and close_date >= dateadd(month, -12, current_date) group by 1 order by 1; ``

Pass: distribution right-skewed toward 0-90 days (60%+ of lost deals close inside first quarter). Fail: the 365+ bucket holds more than 10% of lost deals. Salesforce State of Sales median real deal cycle: 84 days for SMB, 180+ for enterprise.

Gate 2 — Deal cycle reality check. Compare stated average cycle to actual median days from create to (close-won OR close-lost OR last-activity-365d). Winning By Design puts typical mid-market B2B SaaS cycle at 75-110 days. Stated 90 vs. actual 168? You have aging pipeline that will crash through win rate at the next forced cleanup.

Gate 3 — Rep-level variance band, source-bucketed. Win rates should cluster between 20% and 45%. If one rep is at 65% and another at 18%, segment by lead-source first (Bear Case #1) — only then conclude one rep is running false-open deals. Cross-reference [false-positive forecast detection](/knowledge/q06) and [source-attribution discipline](/knowledge/q34).

Gate 4 — Benchmark cross-check. Bridge Group 2024 anchors B2B-SaaS median at 28%, best-in-class 40%+. Force Management reports MEDDPICC-trained reps post lower headline rates initially but 30-40% higher close-to-won rates on qualified survivors. Gartner CSO 2024 Outlook notes 73% of B2B sales orgs miscategorize at least one stage; median miscategorization rate is 18%, swinging reported win rate by 5-7 points. Tradeoff unpacked in [/knowledge/q5](/knowledge/q5).

Audit Cadence

Worked Example (With Cleanup Arithmetic)

A 12-rep mid-market SaaS team reports a 47% win rate for FY2025. Findings: Gate 1 fails — 24% of closed-lost deals sit in 365+ age bucket (industry median: 8%). Gate 2 fails — stated 90-day cycle, actual median 168 days. Gate 3 borderline — variance band 19-58%, source-mix unchecked. Gate 4 fails — 47% is 19 points above Bridge Group median with no MEDDPICC adoption.

Reported denominator: 800 closed deals = 376 won + 424 lost; reported win rate = 376/800 = 47%. Cleanup pulls 96 deals (24% of 424) out of the 365+ stale-lost bucket and re-dates them to their true close period (12-18 months earlier). The active denominator becomes 800 - 96 = 704; numerator stays 376 (won deals weren't affected). Cleaned win rate = 376/704 = 53% at first pass — but you also need to add the 96 stale deals back into prior-period denominators, which raises FY2024 lost count by 96. Recalculating FY2025 with deal-cycle bucketing (only deals closing inside their natural 84-180 day window): true FY2025 win rate is approximately 31-34%. Headline 47% was inflated by ~14 points of hygiene debt.

When This Audit Is Wrong

The audit itself can mislead. Three meta-failures: (a) you ran Gate 4 first and used the benchmark to question Gates 1-3, which means you let a peer median override your own data; (b) you used closed-date as the cohort key instead of created-date, which masks aging entirely; (c) you ran on a single quarter rather than a rolling 12-month window, so a single batch-cleanup quarter looks catastrophic. Always start with Gate 1, always cohort by created-date, always use rolling 12-month.

CRO 10-Minute Red-Flag Scan

  1. Closed-lost report, last 12 months: if 365+ age bucket is >10%, stop — you have hygiene debt.
  2. Top 5 reps by deal volume: any with >50% win rate not on inbound-demo-request leads gets flagged.
  3. Stage-aging report: if more than 20% of stage 3-4 deals have last_activity >30 days, pipeline is partially fictional.
  4. Compare reported win rate to 28% Bridge Group median. 15+ points above with no MEDDPICC, Sandler, or Challenger discipline = almost certainly inflated.

Bear Case (Where The Audit Itself Fails)

  1. Lead-source mix masks variance (impact: 10-25 pt false alarm). Inbound-demo reps post 50%+ legitimately while outbound posts 18% on the same team — both could be clean. Mitigation: segment by lead-source before any conclusion ([source-attribution discipline](/knowledge/q34)). Skip this and you fire the wrong rep.
  2. Quarter-end forced cleanup distorts the time series (impact: 5-15 pt apparent quarterly drop). Batch-closing every Q4 collapses 18 months of slow-rot into one ugly quarter. Mitigation: rolling 12-month windows, exclude bulk-cleanup days, use created-date cohort view.
  3. CPQ and rev-rec gaps redefine "won" (impact: 3-8 pt silent drift). Some CRMs flip closed-won at signature, others at first invoice, others at first cash. Mitigation: force one canonical "won" definition tied to the revenue-recognition event ([closed-won definition drift](/knowledge/q72)).
  4. Re-opened deals double-count (impact: 3-5 pt either direction). Some CRMs leave the original lost record and create a new opportunity; others overwrite. Mitigation: include "re-opened-from" in audit query and dedupe by root-deal-id ([opportunity-lineage hygiene](/knowledge/q92)).

Remediation Roadmap

Board-Deck Talking Points (For The Drop)

Mermaid

graph TD A["Reported Win Rate"] --> G1{"Gate 1: Age Distribution"} G1 -->|"365+ bucket >10%"| F1["Hygiene Debt"] G1 -->|"Pass"| G2{"Gate 2: Cycle Reality"} G2 -->|"Stated vs actual >1.5x"| F2["Aging Pipe"] G2 -->|"Pass"| G3{"Gate 3: Rep Variance"} G3 -->|"Spread >30pts"| S{"Source-Bucketed?"} S -->|"No"| Sx["Re-segment"] S -->|"Yes"| F3["False-Open Deals"] G3 -->|"Pass"| G4{"Gate 4: vs. 28% Bridge Group"} G4 -->|">> 35% no MEDDPICC"| F4["Likely Overstatement"] G4 -->|"25-35%"| OK["Real Number"] F1 --> K["90-day forced close + recalc"] F2 --> K F3 --> K F4 --> K Sx --> G3 OK --> Trust["Trust the rate"] K --> Re["Recalculate post-cleanup"] Re --> Board["Board talking points"]

TAGS: win-rate-audit,crm-hygiene,deal-age,pavilion-benchmark,meddpicc-discipline

FAQ

What four audit gates confirm a reported win rate is real? A win rate is real only when all four gates pass: a deal-age distribution with no closed-lost deals older than 6 months hiding in stage 3-4, a deal-cycle reality check where stated and actual median cycle are within 1.5x, close-rate parity within 15 points between quota-hitters and quota-missers after lead-source bucketing, and a benchmark cross-check against the Bridge Group median of 28% and Pavilion's 25-35% operator range. Any one gate failing means the headline number is hygiene fiction.

Why do reps inflate win rate by leaving stale deals open? Salesforce's State of Sales 2024 reports 67% of reps cite closed-lost reason-picker friction as a reason to delay status updates, so dead pipe sits open and reported win rate improves cosmetically. HubSpot data shows deals untouched 90 days have under 5% close odds, yet 41% of CRMs still flag them active. Gong adds that deals with no rep-customer conversation in 21 days have under 3% close-this-quarter probability.

How does the lost-deal age-distribution gate work? Count deals marked closed-lost in the last 12 months and bucket them by age-at-close into 0-30, 31-90, 91-180, 181-365, and 365+ days. The gate passes when the distribution is right-skewed toward 0-90 days, with 60%+ of lost deals closing inside the first quarter, and fails when the 365+ bucket holds more than 10% of lost deals. Salesforce's median real deal cycle is 84 days for SMB and 180+ for enterprise.

What does the worked example reveal about a 47% reported win rate? A 12-rep mid-market team reporting 47% fails Gate 1 (24% of closed-lost deals sit in the 365+ bucket versus an 8% median), fails Gate 2 (stated 90-day cycle versus an actual 168-day median), is borderline on Gate 3 (19-58% variance, source-mix unchecked), and fails Gate 4 (47% is 19 points above the Bridge Group median with no MEDDPICC adoption). The reported denominator is 800 closed deals (376 won, 424 lost), and cleanup pulls 96 stale-lost deals out and re-dates them to their true close period.

Why does MEDDPICC discipline change how you read win rate? Force Management reports MEDDPICC-trained reps post lower headline win rates initially but 30-40% higher close-to-won rates on the qualified survivors, so a high raw number without that discipline is suspect. Gartner notes 73% of B2B sales orgs miscategorize at least one stage, with a median 18% miscategorization rate that swings reported win rate by 5-7 points. A rate above 45% with no MEDDPICC discipline is essentially always inflation.

Download:
Was this helpful?  
Sources cited
gong.iohttps://www.gong.io/blog/win-rate/bridgegroupinc.comhttps://www.bridgegroupinc.com/blog/sales-development-reportforcemanagement.comhttps://forcemanagement.com/meddpicc/salesforce.comhttps://www.salesforce.com/blog/meddpicc/
⌬ Apply this in PULSE
Free CRM · Revenue IntelligenceAudit pipeline, score reps, ship the fix
Deep dive · related in the library
pulse-reviews · electronic-reviewsIs Chief's no-men policy outdated in 2027 — the case for opening up reviews?pulse-reviews · electronic-reviewsChief vs mixed-gender executive networks in 2027 — what women lose by going women-only reviews?pulse-reviews · electronic-reviewsChief's unintended exclusion problem in 2027 — how the no-men rule blocks male allies reviews?pulse-nightlife · nightlifeTop 10 Nightlife Spots in Dubaipulse-sales-trainings · sales-trainingTop 10 sales manager role-play scenarios for 2027pulse-reviews · electronic-reviewsTop 10 Deal Coaching Agendas for New Hirespulse-reviews · electronic-reviewsTop 10 Ski Towns in Charlottepulse-reviews · electronic-reviewsTop 10 Deal Coaching Agendas for SMB Repspulse-reviews · electronic-reviewsTop 10 Ski Towns in Nashvillepulse-reviews · electronic-reviewsTop 10 Deal Coaching Agendas for Mid-Market Reps
More from the library
pulse-schools · schoolsTop 10 Charter Schools in Floridapulse-q · revopsShould I open or buy a Zoom Tan franchise in 2027?pulse-franchises · franchiseShould I open or buy a First Watch franchise in 2027?pulse-industry-kpis · industry-kpisTop 10 Apparel Retail Revenue KPIspulse-industry-kpis · industry-kpisTop 10 Management Consulting Revenue KPIspulse-franchises · franchiseShould I open or buy a La Quinta franchise in 2027?pulse-tech-stacks · tech-stacksBuild vs. Buy: Should You Build Your Own RevOps Data Warehouse in 2027?pulse-reviews · electronic-reviewsTop 10 Ultrawide Monitors in 2027 — Best Overall + Best Valuepulse-franchises · franchiseShould I open or buy a Milan Laser franchise in 2027?pulse-industry-kpis · industry-kpisTop 10 Convenience Store Revenue KPIspulse-q · revopsShould I open or buy an El Pollo Loco franchise in 2027?pulse-industry-kpis · industry-kpisTop 10 Defense Contractor Revenue KPIspulse-q · revopsShould I open or buy a Spray-Net franchise in 2027?pulse-q · revopsShould I open or buy a You’ve Got Maids franchise in 2027?pulse-q · revopsShould I open or buy a Bishops Cuts/Color franchise in 2027?