Hi,
We need to write a PAS procedure to update values for a measure based on another measure but changing one dimension value. e.g
Source data:
Dim 1 | Dim 2 | Value |
---|---|---|
D1_V1 | D2_V1 | 10 |
D1_V2 | D2_V1 | 5 |
We want to copy all values from source data and change all the values of Dim 2 (D2_V1) to another value (D2_V2)
Result data:
Dim 1 | Dim 2 | Value |
---|---|---|
D1_V1 | D2_V2 | 10 |
D1_V2 | D2_V2 | 5 |
Any ideas?