Complete the code to create a group of selected members in Tableau.
GROUP([1])In Tableau, grouping members is done by selecting the dimension you want to group, such as Customer Name.
Complete the code to create a calculated field that groups 'East' and 'West' regions together.
IF [Region] = [1] OR [Region] = 'West' THEN 'West & East' ELSE [Region] END
This calculation groups the 'East' and 'West' regions into one group called 'West & East'.
Fix the error in the calculated field to group customers with sales above 1000 as 'High Value'.
IF SUM([Sales]) [1] 1000 THEN 'High Value' ELSE 'Other' END
The condition should check if sales are greater than 1000 to classify as 'High Value'.
Fill both blanks to create a group that combines 'Furniture' and 'Office Supplies' categories.
IF [Category] = [1] OR [Category] = [2] THEN 'Combined Group' ELSE [Category] END
This calculation groups 'Furniture' and 'Office Supplies' into one group called 'Combined Group'.
Fill all three blanks to create a calculated field grouping customers by sales range.
IF SUM([Sales]) [1] 500 THEN 'Low' ELSEIF SUM([Sales]) [2] 1500 THEN 'Medium' ELSE [3] END
This calculation groups sales into 'Low' if less than 500, 'Medium' if less or equal to 1500, and 'High' otherwise.