While developing a dashboard in Tableau 10, I'm using SSAS Tabular model as my data source.
One of my dimensions is called "Game" and it have many values.
I want to group some of those values into one value with a new name.
For example, let's say I have the following values under "Game" dimension:
- A
- B
- C
- D
- E
And I want to group values A, B and C into new value named "F" so "Game" (or any other dimension) will posses values:
- D
- E
- F (grouping of A, B and C)
The end goal is, of course, to present some measures for each game, and aggregate those measures for A, B and C together so they'll be displayed aggregated under "F".
Thanks in advance!