PL-300 Model the data • Set 13
PL-300 Model the data Practice Test 13 — 15 questions with explanations. Free, no signup.
You have the above measure in a Power BI model. The 'Date' table is marked as a date table and has a relationship to Sales[OrderDate]. The measure returns blank for all months. What is the most likely cause?
Refer to the exhibit.
```
// DAX Measure
Sales YTD =
CALCULATE(
SUM(Sales[Amount]),
DATESYTD('Date'[Date])
)
```