[object Object]

Most Freshsales deal pipelines are the default template with stage names changed. Forecast accuracy hovers at 50%. Teams that hit 80% forecast accuracy rebuilt stages around explicit exit criteria, not optimism.

Define stages by exit criteria, not activity

A stage like “Demo Done” tells you what happened, not what is true. Replace with “Discovery Confirmed: pain validated, budget identified, decision process documented.” A deal cannot move to the next stage until those three are recorded.

Required fields per stage

Use stage transition validation. Moving a deal to “Proposal” requires the contract value field, the decision-maker contact, and the close date. Block transition if missing.

Stage: Proposal
Required fields:
  - amount > 0
  - close_date set and within 90d
  - decision_maker_contact_id linked
  - business_case_doc URL

Probability per stage, calibrated

Default stage probabilities are guesses. Calibrate them: pull last 12 months of closed deals, compute actual win rate per stage. Update the pipeline definition with real numbers.

// Sample calibration
{
  "Discovery": 10,    // was 25
  "Demo": 25,         // was 50
  "Proposal": 50,     // was 75
  "Verbal": 80,       // was 90
  "Closed Won": 100
}

Multi-pipeline modeling

If you sell to SMB and Enterprise, do not force them into one pipeline. SMB has 3 stages and a 14-day cycle. Enterprise has 6 stages and a 90-day cycle. Freshsales supports multiple pipelines per workspace.

Stuck deals report

A deal that has not changed stage in 30+ days is a forecast risk. Build a saved view; review it weekly. Common outcomes: deal is dead (mark Lost), deal needs re-qualification, deal needs an exec sponsor.

Don’t model “Negotiation” as a stage

Negotiation is an activity within Verbal. Carving it out as a stage causes deals to bounce back and forth, polluting velocity metrics.

Velocity per stage

Compute average days-in-stage. Stages where deals linger are friction points. Coach the team on the specific exit criteria for those stages.

What to do this week

Define exit criteria for each existing stage, recalibrate probabilities from last 12 months actuals, build the stuck-deals saved view, and add stage-transition required field validation for Proposal and Verbal.

[object Object]
Share