Complete the code to create a filter that only shows sales greater than 1000.
IF SUM([Sales]) [1] 1000 THEN 'Show' ELSE 'Hide' END
We use the greater than operator (>) to filter sales above 1000.
Complete the code to filter average profit less than 500.
IF AVG([Profit]) [1] 500 THEN 'Keep' ELSE 'Remove' END
The less than operator (<) filters average profit below 500.
Fix the error in the filter to show only records where total quantity equals 200.
IF SUM([Quantity]) [1] 200 THEN 'Valid' ELSE 'Invalid' END
The equals operator (=) checks if total quantity is exactly 200.
Fill both blanks to filter records where average discount is between 5% and 20%.
IF AVG([Discount]) [1] 0.05 AND AVG([Discount]) [2] 0.20 THEN 'In Range' ELSE 'Out of Range' END
Use '>=' for the lower bound and '<' for the upper bound to include discounts from 5% up to but not including 20%.
Fill all three blanks to filter sales where total sales are greater than 1000, profit is at least 200, and quantity is less than 50.
IF SUM([Sales]) [1] 1000 AND SUM([Profit]) [2] 200 AND SUM([Quantity]) [3] 50 THEN 'Selected' ELSE 'Not Selected' END
Use '>' for sales greater than 1000, '>=' for profit at least 200, and '<' for quantity less than 50.