Complete the code to filter the Sales table for sales greater than 1000.
FILTER(Sales, Sales[Amount] [1] 1000)
The FILTER function requires a condition. To get sales greater than 1000, use the '>' operator.
Complete the code to filter the Customers table for customers in the 'USA'.
FILTER(Customers, Customers[Country] [1] "USA")
To filter for customers in the USA, use the '=' operator to check equality.
Fix the error in the FILTER function to correctly filter products with stock less than 50.
FILTER(Products, Products[Stock] [1] 50)
To filter products with stock less than 50, use the '<' operator.
Fill both blanks to filter the Orders table for orders with quantity greater than 10 and status 'Completed'.
FILTER(Orders, Orders[Quantity] [1] 10 && Orders[Status] [2] "Completed")
The condition requires quantity greater than 10 and status equal to 'Completed'. Use '>' and '=' respectively.
Fill all three blanks to filter the Employees table for employees in 'Sales' department with salary greater than 50000 and active status.
FILTER(Employees, Employees[Department] [1] "Sales" && Employees[Salary] [2] 50000 && Employees[Active] [3] TRUE())
We check department equals 'Sales' (use '='), salary greater than 50000 (use '>'), and active status equals TRUE (use '=').