PL-300 Model the data • Set 11
PL-300 Model the data Practice Test 11 — 15 questions with explanations. Free, no signup.
You are analyzing a DAX query. What is the purpose of the 'Filter Context' column in the result?
Refer to the exhibit.
```
EVALUATE
SUMMARIZECOLUMNS(
'Product'[Category],
'Date'[Year],
"Total Sales", SUMX('Sales', 'Sales'[Quantity] * 'Sales'[UnitPrice]),
"Filter Context", CALCULATE(COUNTROWS('Sales'), ALL('Product'))
)
```