Complete the code to create a filter action that filters on the 'Category' field.
[Category] [1] "Technology"
The filter action uses the equals sign '=' to filter the 'Category' field to only show 'Technology'.
Complete the code to set a filter action that only includes sales greater than 1000.
[Sales] [1] 1000
The filter action uses '>' to include only sales values greater than 1000.
Fix the error in the filter action to correctly filter for 'Region' equal to 'West'.
[Region] [1] "West"
Tableau uses a single '=' for equality in filter actions, not '==' or other operators.
Fill both blanks to filter sales between 500 and 2000 inclusive.
[Sales] [1] 500 AND [Sales] [2] 2000
The filter includes sales greater than or equal to 500 and less than or equal to 2000.
Fill all three blanks to filter products where Category is 'Furniture', Sales are above 1000, and Region is not 'East'.
[Category] [1] "Furniture" AND [Sales] [2] 1000 AND [Region] [3] "East"
The filter includes Category equal to 'Furniture', Sales greater than 1000, and excludes Region 'East' using '<>'.