0
0
Power BIbi_tool~20 mins

Card and multi-row card in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Card and Multi-row Card Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
1:30remaining
Identify the correct use of a Card visual

You want to show the total sales amount as a single number on your Power BI report. Which visual should you use?

AUse a Card visual to display the total sales measure.
BUse a Multi-row Card visual to display the total sales measure.
CUse a Table visual to display the total sales measure.
DUse a Matrix visual to display the total sales measure.
Attempts:
2 left
💡 Hint

Think about which visual shows a single number clearly.

dax_lod_result
intermediate
2:00remaining
Calculate total sales for a specific product category

Given the following DAX measure, what is the output if the current filter context is for the 'Bikes' category only?

Sales Bikes = CALCULATE(SUM(Sales[Amount]), Products[Category] = "Bikes")
Power BI
Sales Bikes = CALCULATE(SUM(Sales[Amount]), Products[Category] = "Bikes")
ASum of sales amount only for 'Bikes' category in the current filter context.
BSum of sales amount for all categories ignoring filters.
CSyntax error in the DAX expression.
DSum of sales amount for 'Bikes' category ignoring current filters.
Attempts:
2 left
💡 Hint

CALCULATE changes filter context to the specified condition.

🔧 Formula Fix
advanced
2:00remaining
Why does the Multi-row Card show repeated values?

You created a Multi-row Card visual with the fields: Customer Name and Total Sales. But the visual shows repeated customer names with the same sales amount multiple times. What is the most likely cause?

AThe measure Total Sales is not aggregated properly causing repeats.
BThe Multi-row Card visual cannot show multiple fields together.
CThe data model has duplicate rows for customers causing repeated values.
DThe visual needs a slicer to filter unique customers.
Attempts:
2 left
💡 Hint

Think about what causes repeated rows in visuals.

🎯 Scenario
advanced
2:00remaining
Best visual choice for showing multiple KPIs per customer

You want to display for each customer their total sales, total orders, and average order value in a single visual. Which visual is best suited for this in Power BI?

AUse a Pie Chart visual to show the three KPIs per customer.
BUse a Multi-row Card visual with the three measures and Customer Name field.
CUse a Line Chart visual to show the KPIs over time.
DUse a Card visual with all three measures combined into one measure.
Attempts:
2 left
💡 Hint

Think about which visual can show multiple values per category clearly.

🧠 Conceptual
expert
2:30remaining
Understanding filter context in Card vs Multi-row Card visuals

Which statement best explains how filter context affects Card and Multi-row Card visuals differently in Power BI?

AMulti-row Card visual cannot be filtered by slicers or report filters.
BBoth Card and Multi-row Card visuals ignore filter context and show all data.
CCard visual applies filter context per row; Multi-row Card aggregates all data ignoring filters.
DCard visual shows a single aggregated value affected by filter context; Multi-row Card shows multiple rows each affected by filter context individually.
Attempts:
2 left
💡 Hint

Consider how each visual displays data and how filters apply.