Complete the code to create a set that includes all customers with sales over $10,000.
IF SUM([Sales]) [1] 10000 THEN 'High Value' ELSE 'Other' END
We use the greater than operator (>) to select customers with sales over $10,000.
Complete the code to create a set that dynamically groups products with sales less than $5,000.
IF SUM([Sales]) [1] 5000 THEN 'Low Sales' ELSE 'Others' END
The less than operator (<) selects products with sales below $5,000 for the set.
Fix the error in the set calculation to group customers with sales between $5,000 and $15,000.
IF SUM([Sales]) [1] 5000 AND SUM([Sales]) [2] 15000 THEN 'Mid Value' ELSE 'Other' END
Use >= 5000 for the lower bound and <= 15000 for the upper bound.
Fill both blanks to create a set that groups products with sales between $1,000 and $4,999 inclusive.
IF SUM([Sales]) [1] 1000 AND SUM([Sales]) [2] 4999 THEN 'Target Group' ELSE 'Others' END
Use >= 1000 to include sales starting at 1,000 and <= 4999 to include sales up to 4,999.
Fill the blanks to create a set that groups customers with sales above $20,000 and orders count greater than 50.
IF SUM([Sales]) [1] 20000 AND COUNT([Order ID]) [2] 50 THEN 'Top Customers' ELSE 'Others' END
Use > 20000 for sales above 20,000 and > 50 for orders count greater than 50. The option <= is a distractor and not used here.