0
0
Power BIbi_tool~20 mins

Pie and donut charts in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Pie and Donut Chart Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
1:30remaining
Choosing the best use case for a pie chart

Which scenario is the best fit for using a pie chart in a Power BI report?

ADisplaying sales trends over multiple years for several products.
BShowing the percentage distribution of sales by product category for a single year.
CComparing the total sales values of different regions using a bar chart.
DListing detailed sales transactions with customer names and dates.
Attempts:
2 left
💡 Hint

Pie charts work best to show parts of a whole at one point in time.

dax_lod_result
intermediate
2:00remaining
Calculate percentage for pie chart slices

Given a Sales table with columns ProductCategory and SalesAmount, which DAX measure correctly calculates the percentage share of each category for a pie chart?

Power BI
Total Sales = SUM(Sales[SalesAmount])
ACategory % = SUM(Sales[SalesAmount]) * 100
BCategory % = SUM(Sales[SalesAmount]) / SUM(Sales[SalesAmount])
CCategory % = DIVIDE(SUM(Sales[SalesAmount]), CALCULATE(SUM(Sales[SalesAmount]), ALL(Sales[ProductCategory])))
DCategory % = CALCULATE(SUM(Sales[SalesAmount]), FILTER(Sales, Sales[ProductCategory] = EARLIER(Sales[ProductCategory])))
Attempts:
2 left
💡 Hint

Use DIVIDE and ALL to get total sales ignoring category filter.

data_modeling
advanced
2:00remaining
Avoiding misleading pie chart slices

You have a pie chart showing sales by region. One region has very low sales, creating a tiny slice hard to see. What is the best data modeling or visualization approach to improve clarity?

AGroup small regions into an 'Other' category using a calculated table or grouping feature.
BRemove the small region data from the dataset to simplify the chart.
CChange the pie chart to a donut chart without changing data.
DIncrease the font size of the legend to make the small slice label more visible.
Attempts:
2 left
💡 Hint

Grouping small slices helps keep charts readable and meaningful.

🔧 Formula Fix
advanced
2:00remaining
Fixing donut chart color mismatch

A donut chart in Power BI shows sales by product category, but the colors in the legend do not match the slices. Which option explains the cause?

AThe measure used for values is not numeric, causing color mismatch.
BThe data model has duplicate product category names causing color conflicts.
CThe donut chart visual does not support legends, so colors are random.
DThe chart uses a custom color palette that does not align with the data categories due to manual color assignments.
Attempts:
2 left
💡 Hint

Check if colors were manually assigned in the format pane.

🧠 Conceptual
expert
2:30remaining
Limitations of pie and donut charts in BI dashboards

Which statement best describes a key limitation of pie and donut charts in business intelligence dashboards?

AThey are ineffective for comparing many categories because small slices become hard to distinguish.
BThey cannot display percentage values and require additional calculations.
CThey always require 3D effects to be visually appealing and clear.
DThey automatically update with real-time data without any configuration.
Attempts:
2 left
💡 Hint

Think about how many slices a pie chart can show clearly.