0
0
Power BIbi_tool~20 mins

Why advanced visuals reveal deeper insights in Power BI - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Advanced Visual Insights Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Identify the best visual for showing trends over time

You have monthly sales data for 3 years. Which visual will best show sales trends clearly?

AA clustered bar chart with months on the x-axis and sales on the y-axis
BA line chart with months on the x-axis and sales on the y-axis
CA stacked area chart with years on the x-axis and sales on the y-axis
DA pie chart showing total sales per year
Attempts:
2 left
💡 Hint

Think about which chart type best shows continuous data changes over time.

dax_lod_result
intermediate
2:00remaining
Calculate average sales per customer segment

Given a sales table with CustomerSegment and SalesAmount columns, which DAX measure correctly calculates the average sales per segment?

Power BI
Measure = AVERAGEX(VALUES(Sales[CustomerSegment]), CALCULATE(SUM(Sales[SalesAmount])))
AMeasure = AVERAGE(Sales[SalesAmount])
BMeasure = CALCULATE(AVERAGE(Sales[SalesAmount]), ALLEXCEPT(Sales, Sales[CustomerSegment]))
CMeasure = AVERAGEX(VALUES(Sales[CustomerSegment]), CALCULATE(SUM(Sales[SalesAmount])))
DMeasure = SUM(Sales[SalesAmount]) / COUNTROWS(Sales)
Attempts:
2 left
💡 Hint

Think about how to calculate average sales per unique segment, not overall average.

data_modeling
advanced
2:00remaining
Optimize a data model for faster report loading

You have a large sales dataset with many columns, but your report only uses a few. What is the best way to optimize the model for performance?

ARemove unused columns and create relationships only for needed tables
BKeep all columns and create many-to-many relationships for flexibility
CDuplicate tables to avoid complex relationships
DUse calculated columns for all measures to speed up calculations
Attempts:
2 left
💡 Hint

Think about reducing data size and simplifying relationships.

🎯 Scenario
advanced
2:00remaining
Choosing the right visual to compare multiple categories and subcategories

You want to compare sales across product categories and their subcategories in one visual. Which visual type best reveals detailed insights?

AA scatter plot with categories on x-axis and sales on y-axis
BA stacked bar chart showing categories and subcategories stacked
CA pie chart for each category showing subcategory sales
DA matrix visual with categories as rows and subcategories as columns showing sales values
Attempts:
2 left
💡 Hint

Think about how to show detailed breakdowns in a clear, tabular way.

🔧 Formula Fix
expert
2:00remaining
Identify the error in this DAX measure for cumulative sales

What error does this DAX measure produce?

Measure = CALCULATE(SUM(Sales[SalesAmount]), FILTER(ALL(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))

Power BI
Measure = CALCULATE(SUM(Sales[SalesAmount]), FILTER(ALL(Sales[Date]), Sales[Date] <= MAX(Sales[Date])))
ANo error; measure calculates cumulative sales correctly
BMAX function causes a context transition error inside FILTER
CSyntaxError due to missing closing parenthesis
DALL function removes all filters causing incorrect cumulative calculation
Attempts:
2 left
💡 Hint

Check if the DAX syntax is complete and if the functions are used correctly.