0
0
Power BIbi_tool~20 mins

Table and matrix visuals in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Matrix Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Identify the correct way to display hierarchical data in a matrix visual

You have sales data by Region, Country, and City. You want to show this hierarchy in a matrix visual so users can expand and collapse levels.

Which option correctly configures the matrix visual to achieve this?

AAdd Region, Country, and City fields to Rows area in order: Region, Country, City
BAdd Region, Country, and City fields to Columns area in order: City, Country, Region
CAdd City, Country, and Region fields to Values area
DAdd Region to Rows, Country to Columns, City to Values
Attempts:
2 left
💡 Hint

Think about how to create drill-down levels in a matrix visual.

dax_lod_result
intermediate
2:00remaining
Calculate total sales per product category ignoring filters on subcategory

You have a table visual showing sales by Product Subcategory. You want to add a measure that shows total sales per Product Category ignoring any filters on Subcategory.

Which DAX measure will produce the correct result?

Power BI
Total Sales by Category = CALCULATE(SUM(Sales[Amount]), ALL(Product[Subcategory]))
ASUMX(VALUES(Product[Category]), SUM(Sales[Amount]))
BCALCULATE(SUM(Sales[Amount]), ALLEXCEPT(Product, Product[Category]))
CCALCULATE(SUM(Sales[Amount]), ALL(Product[Subcategory]))
DCALCULATE(SUM(Sales[Amount]), REMOVEFILTERS(Product[Category]))
Attempts:
2 left
💡 Hint

Use a function that removes filters on Subcategory but keeps others.

data_modeling
advanced
2:00remaining
Optimize a table visual with many columns for performance

You have a table visual with 20 columns from a large dataset. The report is slow to load and interact with.

Which approach will best improve performance without losing important data?

AIncrease the number of rows shown per page to reduce pagination
BAdd all columns to the visual and enable row-level security
CUse calculated columns for all fields instead of measures
DRemove unnecessary columns and use aggregations or measures instead of raw columns
Attempts:
2 left
💡 Hint

Think about reducing data volume and complexity in visuals.

🔧 Formula Fix
advanced
2:00remaining
Identify the cause of incorrect subtotal values in a matrix visual

A matrix visual shows sales by Region and Product. The subtotal for Region shows a value smaller than the sum of products.

What is the most likely cause?

AThe measure used applies a filter that removes some products at subtotal level
BThe matrix visual is missing the Region field in Rows area
CThe data model has no relationship between Region and Product tables
DThe subtotal row is disabled in matrix visual settings
Attempts:
2 left
💡 Hint

Consider how measures behave differently at subtotal levels.

🎯 Scenario
expert
3:00remaining
Design a matrix visual to show monthly sales with dynamic conditional formatting

You want a matrix visual showing monthly sales by Product Category and Region. You want to highlight months where sales are below the average monthly sales for that category.

Which approach will achieve this dynamic conditional formatting?

AManually set colors for each month column in the matrix visual
BCreate a measure calculating average monthly sales per category, then use it in conditional formatting rules on the matrix values
CUse a calculated column to flag months below average and filter the matrix visual
DApply conditional formatting based on total sales without considering category averages
Attempts:
2 left
💡 Hint

Think about how to use measures in conditional formatting.