Complete the code to filter the Sales table for only rows where Quantity is greater than 10.
FILTER(Sales, Sales[Quantity] [1] 10)
The FILTER function keeps rows where the condition is true. We want Quantity greater than 10, so we use >.
Complete the code to filter the Customers table for rows where Country equals 'USA'.
FILTER(Customers, Customers[Country] [1] "USA")
To filter rows where Country is exactly 'USA', use the equals operator =.
Fix the error in the code to filter the Orders table for rows where OrderDate is after January 1, 2023.
FILTER(Orders, Orders[OrderDate] [1] DATE(2023, 1, 1))
To get orders after January 1, 2023, use the > operator to compare dates.
Fill both blanks to filter the Products table for rows where Price is between 50 and 100 inclusive.
FILTER(Products, Products[Price] [1] 50 && Products[Price] [2] 100)
Price should be greater than or equal to 50 and less than or equal to 100 to include both ends.
Fill all three blanks to filter the Employees table for rows where Department is 'Sales' and Age is greater than 30.
FILTER(Employees, Employees[[1]] [2] "[3]" && Employees[Age] > 30)
The filter checks if Department equals 'Sales' and Age is greater than 30.