Forum Discussion
SamfarUK
Helper I
1 year agoMeasure calculation with more than on element
Can someone please tell me how I can add "OP25R" into this calculation?
- 1 year ago
SamfarUK , Try using
DAX
Budgets = CALCULATE(
SUM('consolidated'[value]),
KEEPFILTERS('consolidated'[Financial] IN {"OP25", "OP25R"})
)
bhanu_gautam
Super User
1 year agoSamfarUK , Try using
DAX
Budgets = CALCULATE(
SUM('consolidated'[value]),
KEEPFILTERS('consolidated'[Financial] IN {"OP25", "OP25R"})
)
- SamfarUK1 year ago
Helper I
I knew it was going to be something simple but I just couldn't figure it out. Thank you so much!