Placeholder

Customer Forum

Pipeline Stage Movement

Keith (Workbooks Online) Posted: 2017-02-13 15:05

​​​​​Prerequisite: This report uses the Audit Extension, and will not work if you’re not licenced to for this feature.  Your system administrator will be able to confirm if you have this extension.

Overview

This forum post presents an Opportunity Report that helps provide visibility of “Pipeline Movement”, which helps you understand what’s happening in your sales pipeline.  The report has 5 views, which show:

  • New to Pipeline - Opportunities that are new to the pipeline (newly created opportunities)
  • Lost - Deals that have been lost
  • Won - Deals that have been won
  • Stage Movement (Details) - Which deals have advanced?  Which deals have gone backwards?  Which deals have not moved.
  • Stage Movement (Analysis) - As above, but summarised by salesperson

The New to Pipeline, Lost & Won views are all similar in appearance:

pipeline_movement_1.png

Stage Movement (Details):

pipeline_movement_2.png

Stage Movement (Analysis):

pipeline_movement_3.png

Here’s an example of the report (which is available as a template report, named “Template - Sales - Pipeline Stage Movement (Opportunities)”) in action:

  • The rightmost column, “No. of Stages Moved” highlights any opportunities that have reverted to an earlier stage with a red background.
  • The same column also shows the number of stages a deal has advanced by, or stayed at the same stage

pipeline_movement_4.png

As discussed in our CRM for New Business Sales webinar (not essential to understanding this report, but well worth watching), it’s important to have a process and appropriate “Sales Stages” for the Opportunities in your sales pipeline.  The example we provide uses these stages, which have a consistent prefix / naming convention:

Stage 1 - Qualify

Stage 2 - Qualified & Quoted

Stage 3 - Closing

Stage 4 - Awaiting Order

Stage 5 - Closed Won

Stage 6 - Closed Lost  

This graphic represents a sales funnel.  “Stage 5 - Closed Won” is the natural goal, but opportunities can, of course, be lost at any stage within the sales process, or revert to an earlier stage e.g. A customer may change their requirements, which requires re-quoting, or further discussions with sales staff.

pipeline_movement_5.png

Salespeople manage Opportunities by changing the Stage as each deal progresses e.g. an Opportunity will be moved from “Stage 4 - Awaiting Order” to “Stage 5 - Closed Won” when the customer confirms they wish to proceed:

pipeline_movement_6.png

How do I build it?

We’ve provided a Template Report (Template - Sales - Pipeline Stage Movement (Opportunities)).  All you need to do is use the template, but we do of course provide more detail…

Important: The first 7 characters of each stage name are “Stage n”, with n representing the stage number.  This means the 7th character is always a number, which is used to perform arithmetic in a calculated column to determine if the Opportunity has progressed, not changed, or reverted to an earlier stage.

Opportunity pipeline stages vary from business to business, and you can amend them to fit your own sales process, but this report will need to be modified if you use a different naming convention for your stages.

The report only works if the 7th character of the stage name is a single number (1, 2, 3,..through to..9.  It will need to be modified if you have 10+ stages, or use a different naming convention).

  • Start > New > Report > select “Create a report from a template report”
  • Select the “Template - Sales - Pipeline Stage Movement (Opportunities)” template
  • Give the report a suitable name and description on the Main tab of the report editor and click Save.

How does it work?

The report uses Calculated Columns and formulae to calculate the Starting Stage and End Stage.  The report also calculates the Starting Stage Number and End Stage Number, by finding the 7th character of the Opportunity Stage name.  “Stage 5 - Closed Won” is a string of text, and it’s not possible to perform arithmetic on text.  However, the 7th character is also calculated in a Calculated Column, converted to a number, and the Starting Stage Number is subtracted from the End Stage Number, which is displayed as No. of Stages Moved.

Calculated Column code for No. of Stages moved:

CONVERT(MID(IF(LOCATE('|||', GROUP_CONCAT(PARENT('New Value') ORDER BY  PARENT('Audit Record Date time') DESC SEPARATOR '|||'))-1 <0,
GROUP_CONCAT(PARENT('New Value')), LEFT(GROUP_CONCAT(PARENT('New Value') ORDER BY PARENT('Audit Record Date time') DESC SEPARATOR '|||'), 
LOCATE('|||', GROUP_CONCAT(PARENT('New Value') ORDER BY PARENT('Audit Record Date time') DESC SEPARATOR '|||'))-1)),7,1), SIGNED INTEGER) 
-
CONVERT(MID(IF(LOCATE('|||', GROUP_CONCAT(PARENT('Previous Value') ORDER BY  PARENT('Audit Record Date time') ASC SEPARATOR '|||'))-1 <0,
GROUP_CONCAT(PARENT('Previous Value')), LEFT(GROUP_CONCAT(PARENT('Previous Value') ORDER BY PARENT('Audit Record Date time') ASC SEPARATOR '|||'),    
LOCATE('|||', GROUP_CONCAT(PARENT('Previous Value') ORDER BY PARENT('Audit Record Date time') ASC SEPARATOR '|||'))-1)),7,1), SIGNED INTEGER)

Obviously, this is a little unwieldy, which is why it’s probably easiest to start with the template, rather than create from new.

The template report is available, and you’re very welcome to investigate / reverse engineer the formulae, but our Knowledge Base has several useful pages detailing the techniques used in this report:

​​​​​​Note: The default criteria uses "is in the current calendar year", so you may wish to change this to "last week", or whatever Calendar range best suits your requirements:

pipeline_movement_7.png

This article explains how to use Calculated Columns to calculate the most recent description of an activity.  The same principle is used in this template report calculate the starting and end stages of the opportunity, but instead of drilling into Activity data, the report drills from the Opportunity record into Audit data: