diff --git a/kb/DI005.md b/kb/DI005.md index d6d2ea0..430b83c 100644 --- a/kb/DI005.md +++ b/kb/DI005.md @@ -32,7 +32,7 @@ CALCULATE([Total Sales], FILTER(ALL(Products), Products[Color] = "Red")) ``` To: ```dax -CALCULATE([Total Sales], Products[Color] = "Red") +CALCULATE([Total Sales], ALL(Products), Products[Color] = "Red") ``` ## Example 3 @@ -52,6 +52,7 @@ To: ```dax CALCULATE( [Total Sales], + ALL(Products), Products[Color] = "Red", Products[Class] = "High-end" )