Dashboard Mode - Funnel charts
Business Question
How many customers move through each stage of our sales process, from initial contact to final purchase?
How many customers move through each stage of our sales process, from initial contact to final purchase?
| Stage | Customers |
|---|---|
| Contacted | 500 |
| Qualified | 350 |
| Proposed | 200 |
| Negotiation | 120 |
| Closed Won | 80 |
Total Contacted = CALCULATE(SUM('SalesFunnel'[Customers]), 'SalesFunnel'[Stage] = "Contacted")Conversion Rate = DIVIDE(CALCULATE(SUM('SalesFunnel'[Customers]), 'SalesFunnel'[Stage] = "Closed Won"), CALCULATE(SUM('SalesFunnel'[Customers]), 'SalesFunnel'[Stage] = "Contacted"), 0)Drop % = VAR CurrentStage = 'SalesFunnel'[Stage]
VAR PrevCustomers = CALCULATE(SUM('SalesFunnel'[Customers]), FILTER('SalesFunnel', 'SalesFunnel'[Stage] = SWITCH(CurrentStage, "Qualified", "Contacted", "Proposed", "Qualified", "Negotiation", "Proposed", "Closed Won", "Negotiation", BLANK())))
RETURN IF(ISBLANK(PrevCustomers), BLANK(), (PrevCustomers - 'SalesFunnel'[Customers]) / PrevCustomers)+----------------------+----------------------+ | KPI: Total Contacted | KPI: Conversion Rate | +----------------------+----------------------+ | Funnel Chart | | | | | +----------------------------------------------+ | Table | +----------------------------------------------+
A slicer allows filtering by sales region (e.g., North, South). When a region is selected, the funnel chart, KPI cards, and table update to show data only for that region. This helps analyze funnel performance by region.
If you add a filter for Region = 'North', which components update and what changes occur?