Complete the code to enable DirectQuery mode in a composite model.
Model.EnableCompositeMode([1])Setting true enables DirectQuery mode in the composite model.
Complete the DAX expression to create a calculated table combining DirectQuery and Import data.
CombinedTable = UNION(ImportTable, [1])The UNION function combines rows from ImportTable and DirectQueryTable.
Fix the error in the DAX measure to calculate sales from both Import and DirectQuery tables.
TotalSales = SUM(ImportSales[Amount]) + [1]Use SUM(DirectSales[Amount]) to add sales from the DirectQuery table correctly.
Fill both blanks to create a relationship between Import and DirectQuery tables.
CREATE RELATIONSHIP [1] ON [2]
The relationship is created by matching CustomerID columns from both tables.
Fill all three blanks to write a DAX measure that filters Import data by DirectQuery date range.
FilteredSales = CALCULATE(SUM(ImportSales[Amount]), ImportSales[Date] [1] DirectQueryDates[StartDate], ImportSales[Date] [2] DirectQueryDates[EndDate], [3])
The measure filters ImportSales dates between DirectQueryDates start and end dates, removing other filters with ALL.