January 2017
Beginner to intermediate
372 pages
5h 55m
English
The ALL function works with FILTER to remove any conditions that are on your data. This is helpful when you are creating calculations that need to use the entire dataset as the denominator. Using the ALL function ignores any filters or slices that are applied in a query or end user tool. The ALL function has a required syntax of: ALL(<table>|<column>).
In this recipe, you will create a new measure to show the number of crashes reported using the CALCULATE function and the ALL function to ensure all filtering is removed.
Crashes_Reported:= CALCULATE( COUNT(CRASH_DATA_T[CASENUMBER]), ...
Read now
Unlock full access