Complete the DAX expression to create a static RLS filter for the 'Region' column.
FILTER('Sales', 'Sales'[Region] = [1])
In DAX, text values must be enclosed in double quotes inside expressions. So "North" is correct.
Complete the DAX expression to apply a static RLS rule filtering 'Country' to 'USA'.
FILTER('Customers', 'Customers'[Country] = [1])
Text values in DAX must be enclosed in double quotes inside expressions, so "USA" is correct.
Fix the error in this static RLS DAX filter expression by completing the blank.
FILTER('Orders', 'Orders'[Status] = [1])
The text value must be enclosed in double quotes in DAX expressions, so "Completed" is correct.
Fill both blanks to create a static RLS rule filtering 'Category' to 'Electronics' in the 'Products' table.
FILTER([1], [1][[2]] = "Electronics")
The table name is 'Products' and the column to filter is 'Category'. The table name must be in single quotes in DAX, but column names inside brackets are not quoted.
Fill all three blanks to create a static RLS rule filtering 'Region' to 'West' in the 'Sales' table using DAX.
FILTER([1], [2][[3]] = "West")
The table name is 'Sales' (single quoted) for BLANK_1 and BLANK_2, the column is Region (no quotes inside brackets), and the filter value is "West".