You want to show the total sales amount as a single number on your Power BI report. Which visual should you use?
Think about which visual shows a single number clearly.
A Card visual is designed to show one single value, such as total sales, clearly and prominently. Multi-row Card shows multiple values, and Table or Matrix show detailed data.
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")
Sales Bikes = CALCULATE(SUM(Sales[Amount]), Products[Category] = "Bikes")CALCULATE changes filter context to the specified condition.
The CALCULATE function applies the filter Products[Category] = "Bikes" on top of the current filter context, so it sums sales only for Bikes category within the current filters.
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?
Think about what causes repeated rows in visuals.
If the data model contains duplicate rows for customers, the Multi-row Card will show repeated customer names with their sales. The visual can show multiple fields, and measures aggregate correctly by default.
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?
Think about which visual can show multiple values per category clearly.
The Multi-row Card visual can display multiple measures side by side for each category (customer). Card shows only one value, Pie and Line charts are for different purposes.
Which statement best explains how filter context affects Card and Multi-row Card visuals differently in Power BI?
Consider how each visual displays data and how filters apply.
The Card visual shows one aggregated value that changes with filter context. The Multi-row Card shows multiple rows, each filtered and aggregated according to the current filter context.