Which statement best describes a composite model in Power BI?
Think about how Power BI can mix data storage modes.
Composite models allow combining DirectQuery and Import modes in one model, enabling flexibility and performance optimization.
Given a composite model with a DirectQuery table 'Sales' and an Import table 'Products', what is the result of this DAX measure?
Measure = CALCULATE(SUM(Sales[Amount]), Products[Category] = "Electronics")
Assuming 'Products' is imported and 'Sales' is DirectQuery, what does this measure do?
Consider how relationships work between Import and DirectQuery tables in composite models.
In composite models, filters from Import tables can be applied to DirectQuery tables if relationships exist, so the measure sums Sales Amount filtered by Electronics category.
You have a composite model mixing large DirectQuery sales data and small imported product data. Which visualization approach best helps identify performance bottlenecks?
Think about what helps diagnose performance issues in composite models.
A table showing query durations and data source types helps identify which visuals or queries cause slowdowns in composite models.
You created a composite model with an Import table 'Customers' and a DirectQuery table 'Orders'. The relationship between them is inactive, causing incorrect sales totals. Which DAX expression activates the relationship temporarily to fix the measure?
Measure = ?
Recall how to activate inactive relationships in DAX.
USERELATIONSHIP activates an inactive relationship temporarily within CALCULATE, fixing filtering issues in composite models.
Your company wants a Power BI report combining real-time sales data from a DirectQuery SQL database and historical sales data imported monthly. You also want to filter by product categories from an imported table. Which design approach best fits this scenario?
Consider how composite models allow mixing storage modes for best performance and freshness.
Composite models enable mixing DirectQuery for real-time data and Import for historical and dimension tables, allowing filtering and performance balance.