Hi
I want to create new dimension based on below:
1- for each Dimension 2 = C and measure 1 = 0 --> False
2- for each Dimension 2 = C and measure 1 = 1 --> True
Moreover, I want to extract the result (True/False) to other value of dimension 2 within each dimension 1.
below depiction will clarify my requirements.
Please help me to know what the function will be to get the same.
| Dimension 1 | Dimension 2 | Measure 1 | Desired Dimension |
|---|---|---|---|
| x | a | * | True |
| x | b | * | True |
| x | c | 1 | True |
| y | a | * | False |
| y | b | * | False |
| y | c | 0 | False |
Thanks