Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am looking to create a calculated dimension with multiple values of the same dimension.
The dimension is 'Opponent' and there are eight values. (Opponent A, Opponent B, Opponent C)
What is the syntax of the dimension?
In your chart use Valuelist('Opponent A', 'Opponent B', 'Opponent C') as a dimension and if() statement to specify the expressions for each dimension value
Try to use ValueList function:
Valuelist('Opponent A', 'Opponent B', 'Opponent C')
8 values? how are they getting into the three Opponents you mentioned (A, B, C)?
That was an example, there are eight opponents
Why can't you use opponents as your dimension? Why do you need calculated dimension?
In your chart use Valuelist('Opponent A', 'Opponent B', 'Opponent C') as a dimension and if() statement to specify the expressions for each dimension value
There are values in there, which I do not want to have appear in the table.
Then you can use an if statement
If(Not Match(opponents, 'opponents9'), opponents)