Errata corrige
To ensure the ongoing accuracy of this book and its companion content, we have reviewed and confirmed the errors listed below. If you find a new oversight not included in both of the following sections, please report it to us.
Important issues
Corrections in this section are important to fully understand the concepts explained in the book.
No important issues have been reported yet.
Minor issues
Corrections in this section do not affect the ability to learn the concepts explained in the book.
-
Page 471: Incorrect table headers in Figure 12-17
The Sales and Product table headers in Figure 12-17 should be removed from the figure, they are unrelated to the content displayed.
Nov 25, 2025
-
Page 491: Missing assignment operator in DAX measure
There is a missing “=” assignment operator after the line VAR Result in the 6 Months Avg measure. The correct code of the final part of the 6 Months Avg measure should be:
VAR Result =
IF (
[Sales Amount] > 0,
MovingAverage
)
RETURN Result
Nov 25, 2025