Forum Discussion
COMBINE FILTER
Hello everyone, I need to be able compare VALUE1 for each SCENARIO in graphs for each CLIENT and after selecting the SCENARIO in the graphs have the sum of VALUE2 for both clients.
| CLIENT | SCENARIO | VALUE1 | VALUE2 |
| A | K | 4 | 6 |
| A | L | 2 | 8 |
| A | M | 6 | 3 |
| B | N | 8 | 8 |
| B | O | 9 | 6 |
| B | P | 7 | 2 |
Thanks!
Hi, Anonymous
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may create a measure as below.
Sum of value2 = CALCULATE( SUM('Table'[VALUE2]), FILTER( ALL('Table'), [SCENARIO] in DISTINCT('Table'[SCENARIO]) ) )If you select M and O, you will get 9 the result of sum of VALUE2 (3+6).
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- FowmySuper User
- AnonymousNot applicable
If I select M and O, I get 5 the result of sum of VALUE2 (3+2)
- v-alq-msftCommunity Support
Hi, Anonymous
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
You may create a measure as below.
Sum of value2 = CALCULATE( SUM('Table'[VALUE2]), FILTER( ALL('Table'), [SCENARIO] in DISTINCT('Table'[SCENARIO]) ) )If you select M and O, you will get 9 the result of sum of VALUE2 (3+6).
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.