Question
How to create aliases for aggregated measure fields that are added to the view?
For example, when we added the SUM(Sales) to the [Size] mark, how to make aliases like "10,000" to "first group"?
How to create aliases for aggregated measure fields that are added to the view?
For example, when we added the SUM(Sales) to the [Size] mark, how to make aliases like "10,000" to "first group"?
IF { FIXED [State]:SUM([Sales])}<10000 THEN "Group 1" ELSEIF { FIXED [State]:SUM([Sales])}<15000 THEN "Group 2" ELSEIF { FIXED [State]:SUM([Sales])}<20000 THEN "Group 3" ELSEIF { FIXED [State]:SUM([Sales])}<25000 THEN "Group 4" ELSEIF { FIXED [State]:SUM([Sales])}<30000 THEN "Group 5" ELSE "Group 6" END