0
0
Power BIbi_tool~20 mins

Funnel charts in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Funnel Chart Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Identify the correct funnel chart setup

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?

AUse 'Stage' as Group and 'Count of Customers' as Values, sorted ascending by 'Stage'.
BUse 'Count of Customers' as Group and 'Stage' as Values, sorted ascending by 'Stage'.
CUse 'Stage' as Values and 'Count of Customers' as Group, no sorting applied.
DUse 'Stage' as the Group and 'Count of Customers' as the Values, sorted descending by 'Count of Customers'.
Attempts:
2 left
💡 Hint

Remember, funnel charts group by categories and measure the size by values, sorted to show the largest stage first.

dax_lod_result
intermediate
2:30remaining
Calculate conversion rate between funnel stages

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?

AConversion Rate = DIVIDE(CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Closed"), CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Leads"))
BConversion Rate = SUM(SalesStages[CustomerCount]) / CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Leads")
CConversion Rate = CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Leads") / CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Closed")
DConversion Rate = DIVIDE(CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Leads"), CALCULATE(SUM(SalesStages[CustomerCount]), SalesStages[Stage] = "Closed"))
Attempts:
2 left
💡 Hint

Conversion rate is the count at the last stage divided by the count at the first stage.

data_modeling
advanced
3:00remaining
Modeling data for funnel chart with multiple funnels

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?

ACreate a single table with columns: Product, Stage, CustomerCount, then use Product as Small multiples and Stage as Group.
BCreate separate tables for each product with Stage and CustomerCount, then merge them in the funnel chart.
CCreate a table with Stage and CustomerCount only, ignoring Product, then filter manually.
DCreate a table with Product as rows and Stage as columns, then use a matrix visual instead of funnel chart.
Attempts:
2 left
💡 Hint

Think about how to compare multiple categories side-by-side in a funnel chart.

🔧 Formula Fix
advanced
2:00remaining
Troubleshoot funnel chart showing incorrect stage order

Your funnel chart shows stages in alphabetical order instead of the business process order: Leads, Qualified, Proposal, Closed. What is the most likely cause?

AThe data model has duplicate stage names causing confusion in sorting.
BThe funnel chart does not support custom sorting and always sorts alphabetically.
CThe 'Stage' column is sorted alphabetically because it is a text field without a sort order defined.
DThe 'CustomerCount' measure is not aggregated correctly, causing sorting issues.
Attempts:
2 left
💡 Hint

Check how text columns are sorted in Power BI visuals.

🧠 Conceptual
expert
2:30remaining
Explain the limitation of funnel charts in Power BI

Which of the following is a known limitation of funnel charts in Power BI that affects how data can be visualized?

AFunnel charts automatically aggregate data by date, which cannot be changed.
BFunnel charts only support one measure and one category field, limiting multi-metric comparisons.
CFunnel charts allow unlimited drill-down levels, which can confuse users.
DFunnel charts support conditional formatting on each stage independently.
Attempts:
2 left
💡 Hint

Think about how many measures and categories funnel charts accept.