Complete the code to retrieve the report-level filter on the 'Region' field.
FILTERS('Sales'[[1]])
The 'Region' field is used to filter the entire report at the report level.
Complete the DAX expression to check if the report-level filter on 'Year' is active.
IF(HASONEVALUE('Date'[[1]]), "Filtered", "Not Filtered")
Checking 'Year' ensures the report-level filter on the year is active.
Fix the error in the DAX formula to correctly ignore the report-level filter on 'Category'.
CALCULATE(SUM('Sales'[Amount]), ALL('Product'[[1]]))
Using ALL on 'Category' removes filters on that field, which is useful to ignore report-level filters on 'Category'.
Fill both blanks to create a measure that respects report-level filters on 'Region' and 'Year'.
CALCULATE(SUM('Sales'[Amount]), [1]('Sales'[Region]), [2]('Date'[Year]))
Using VALUES keeps the current filter context on 'Region' and 'Year' from report-level filters.
Fill all three blanks to create a measure that ignores report-level filters on 'Category' and 'Year' but respects 'Region'.
CALCULATE(SUM('Sales'[Amount]), [1]('Product'[Category]), [2]('Date'[Year]), [3]('Sales'[Region]))
ALL removes filters on 'Category' and 'Year', while VALUES keeps the filter on 'Region'.