PL-300 Visualize and analyze the data • Set 7
PL-300 Visualize and analyze the data Practice Test 7 — 15 questions with explanations. Free, no signup.
You have a Power BI report with the DAX measure shown in the exhibit. Users report that the measure returns blank for some months even though sales data exists for both current and previous years. What is the most likely cause?
Refer to the exhibit.
```dax
Sales YoY % =
VAR CurrentYearSales = SUM('Sales'[Amount])
VAR PreviousYearSales = CALCULATE(SUM('Sales'[Amount]), SAMEPERIODLASTYEAR('Date'[Date]))
RETURN
DIVIDE(CurrentYearSales - PreviousYearSales, PreviousYearSales)
```