Goal:
Have a measurement for each PK_test row based on sum of all its quantity from productNumber.
PK_test qty productNumber
-----------------------------------------------
1 5 asdf
2 4 asdf
3 9 sdfg
4 1 sdfg
5 1 lkj
6 6 lkj
7 3 lkj
8 3 mnb
To make it more easier to understand the result will be of the mesure "m"
PK_test qty productNumber m
-----------------------------------------------
1 5 asdf 9
2 4 asdf 9
3 9 sdfg 10
4 1 sdfg 10
5 1 lkj 10
6 6 lkj 10
7 3 lkj 10
8 3 mnb 3
Problem:
How should I create a calculated measure "m"?
Info:
- No SQl code
- I'm using SSAS tabular
- The value shall not be changed when you select one or many column in dimension table(s). In order word, the value will not be altered based on selection.
Have a measurement for each PK_test row based on sum of all its quantity from productNumber.
PK_test qty productNumber
-----------------------------------------------
1 5 asdf
2 4 asdf
3 9 sdfg
4 1 sdfg
5 1 lkj
6 6 lkj
7 3 lkj
8 3 mnb
To make it more easier to understand the result will be of the mesure "m"
PK_test qty productNumber m
-----------------------------------------------
1 5 asdf 9
2 4 asdf 9
3 9 sdfg 10
4 1 sdfg 10
5 1 lkj 10
6 6 lkj 10
7 3 lkj 10
8 3 mnb 3
Problem:
How should I create a calculated measure "m"?
Info:
- No SQl code
- I'm using SSAS tabular
- The value shall not be changed when you select one or many column in dimension table(s). In order word, the value will not be altered based on selection.