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?
Think about how to create drill-down levels in a matrix visual.
Adding the fields in the Rows area in hierarchical order allows users to expand and collapse levels in the matrix.
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?
Total Sales by Category = CALCULATE(SUM(Sales[Amount]), ALL(Product[Subcategory]))
Use a function that removes filters on Subcategory but keeps others.
ALL(Product[Subcategory]) removes filters on Subcategory, so total sales per Category is calculated ignoring Subcategory filters.
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?
Think about reducing data volume and complexity in visuals.
Removing unused columns and using measures reduces data load and speeds up visuals.
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?
Consider how measures behave differently at subtotal levels.
Measures with filters or conditions can return unexpected subtotal values because filter context changes.
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?
Think about how to use measures in conditional formatting.
Measures can dynamically calculate averages and be used in conditional formatting rules to highlight values below average.