QuestionQ57
Implement and manage semantic modelsYou have a Fabric tenant containing a semantic model with retail-store data. You need to write a DAX query to run by using the XMLA endpoint. The query must return stores that opened since December 1, 2023. Complete the DAX expression. Values may be used once, more than once, or not at all.
Drag & Drop
DEFINE
EVALUATE
FILTER
SUMMARIZE
TABLE
VAR _SalesSince = DATE (2023, 12, 01) FILTER( (Store, Store[Name], Store[OpenDate]), Store[OpenDate] >= _SalesSince )
Community Discussion