You want to create a funnel chart in Power BI to show the sales process stages: Leads, Qualified, Proposal, and Closed. Which setup will correctly display the funnel stages in descending order of count?
Remember, funnel charts group by categories and measure the size by values, sorted to show the largest stage first.
In funnel charts, the 'Group' field defines the stages/categories, and the 'Values' field defines the size of each stage. Sorting descending by the value ensures the funnel narrows correctly.
Given a table 'SalesStages' with columns 'Stage' and 'CustomerCount', write a DAX measure to calculate the conversion rate from 'Leads' to 'Closed'. What is the correct measure?
Conversion rate is the count at the last stage divided by the count at the first stage.
The measure divides the sum of customers at the 'Closed' stage by the sum at the 'Leads' stage using CALCULATE and DIVIDE to avoid errors.
You have sales data for two products, each with stages: Leads, Qualified, Proposal, Closed. How should you model your data to create a funnel chart that compares both products side by side?
Think about how to compare multiple categories side-by-side in a funnel chart.
A single table with Product and Stage columns allows using Product as Small multiples and grouping by Stage in the funnel chart, enabling side-by-side comparison.
Your funnel chart shows stages in alphabetical order instead of the business process order: Leads, Qualified, Proposal, Closed. What is the most likely cause?
Check how text columns are sorted in Power BI visuals.
Text columns sort alphabetically by default. To fix, create a numeric sort column representing stage order and set 'Stage' to sort by that column.
Which of the following is a known limitation of funnel charts in Power BI that affects how data can be visualized?
Think about how many measures and categories funnel charts accept.
Power BI funnel charts accept only one category and one measure, so you cannot compare multiple metrics in the same funnel chart directly.