Complete the code to apply a visual-level filter that shows only sales greater than 1000.
FILTER(Sales, Sales[Amount] [1] 1000)
The visual-level filter should show sales where the amount is greater than 1000, so the correct operator is >.
Complete the code to filter the visual to show only products in the 'Electronics' category.
FILTER(Products, Products[Category] [1] "Electronics")
The filter should select products where the category equals 'Electronics', so the correct operator is '='.
Fix the error in the DAX expression to correctly filter sales for the year 2023.
FILTER(Sales, YEAR(Sales[Date]) [1] 2023)
In DAX, the correct equality operator is '=', not '==', '===', or '=>'.
Fill both blanks to filter the visual to show sales where the amount is between 500 and 2000.
FILTER(Sales, Sales[Amount] [1] 500 && Sales[Amount] [2] 2000)
The filter should include sales amounts greater than or equal to 500 and less than or equal to 2000.
Fill all three blanks to filter the visual to show only customers from 'USA' with sales greater than 1000 and less than 5000.
FILTER(Sales, Sales[Country] [1] "USA" && Sales[Amount] [2] 1000 && Sales[Amount] [3] 5000)
The filter selects sales where the country equals 'USA', the amount is greater than 1000, and less than 5000.