Complete the code to apply a page-level filter for the 'Region' column.
FILTERS('Sales'[[1]])
The 'Region' column is used to filter data at the page level in Power BI.
Complete the DAX expression to check if the page-level filter on 'Year' is active.
IF(HASONEVALUE('Date'[[1]]), "Filtered", "Not Filtered")
HASONEVALUE checks if the 'Year' column has a single filter applied at the page level.
Fix the error in the DAX formula to correctly apply a page-level filter on 'Category'.
CALCULATE(SUM('Sales'[Amount]), FILTERS('Product'[[1]]))
The FILTERS function should reference the 'Category' column from the 'Product' table to apply the page-level filter correctly.
Fill both blanks to create a measure that returns the selected page-level filter value for 'Country'.
SelectedCountry = IF(HASONEVALUE('Location'[[1]]), VALUES('Location'[[2]]), "Multiple")
Both blanks should be filled with 'Country' to check and return the selected country filter at the page level.
Fill both blanks to create a measure that sums sales filtered by the page-level filter on 'Segment' and 'Year'.
FilteredSales = CALCULATE(SUM('Sales'[Amount]), FILTERS('Customer'[[1]]), FILTERS('Date'[[2]]), )
The measure uses FILTERS on 'Segment' and 'Year' columns and separates the filters with a comma inside CALCULATE to apply both filters at the page level.