You have a decomposition tree visual showing sales by region, then by product category, then by sales channel. If you expand the 'North America' node, which of the following best describes what you will see next?
Think about the order of levels in the decomposition tree.
Expanding a node in a decomposition tree shows the next level of breakdown. Since the order is region > product category > sales channel, expanding 'North America' shows product categories within that region.
Given a sales table with columns: Region, ProductCategory, SalesAmount, which DAX measure correctly calculates total sales for the current node in a decomposition tree?
Total Sales = SUM(Sales[SalesAmount])
Consider how the decomposition tree filters data context automatically.
The simple SUM measure respects the current filter context set by the decomposition tree node. Using ALL removes filters, which is not desired.
You want to create a decomposition tree that breaks down sales by Region, then by Product Category, then by Customer Segment. Which data modeling approach is best to support this?
Think about how hierarchies and filtering work best in Power BI.
Separate dimension tables allow clean hierarchies and filtering in decomposition trees. Combining columns or missing relationships reduces flexibility and performance.
Your decomposition tree shows total sales by Region > Product Category > Sales Channel. You notice a sudden drop in sales in the 'West' region. How can you use the decomposition tree to find the cause?
Use the tree's drill-down feature to explore details.
Expanding nodes lets you drill into where sales dropped, helping identify specific product categories or channels causing the issue.
You created a decomposition tree with levels: Country > City > Store. The measure 'Total Sales' is defined as Total Sales = SUM(Sales[Amount]). However, when you expand 'USA' to see cities, the sales numbers do not change and show the total for all countries. What is the most likely cause?
Check relationships and filter propagation in your data model.
If relationships are inactive or missing, filter context from the decomposition tree does not filter the Sales table, causing totals to remain unchanged.