Complete the code to filter the view to only show data where the 'Region' dimension equals 'West'.
IF [Region] = [1] THEN 'Show' ELSE 'Hide' END
We use 'West' in quotes because it is a string value for the Region dimension.
Complete the code to create a filter that includes only 'Category' values that are not 'Furniture'.
IF [Category] <> [1] THEN 'Include' ELSE 'Exclude' END
The '<>' operator means 'not equal to'. We exclude 'Furniture' by checking if Category is not 'Furniture'.
Fix the error in the filter calculation to only show 'Sales' greater than 1000.
IF [Sales] [1] 1000 THEN 'High' ELSE 'Low' END
To show sales greater than 1000, use the '>' operator.
Fill both blanks to create a filter that shows only 'Region' values that are either 'East' or 'South'.
IF [Region] = [1] OR [Region] = [2] THEN 'Show' ELSE 'Hide' END
We use OR to include both 'East' and 'South' regions in the filter.
Fill all three blanks to create a filter that shows 'Category' as 'Technology' and 'Sales' greater than 5000.
IF [Category] = [1] AND [Sales] [2] [3] THEN 'Valid' ELSE 'Invalid' END
This filter checks that Category is 'Technology' and Sales is greater than 5000.