Forum Discussion
Vegas95
3 years agoRegular Visitor
Dax
Hi everyone, My dataset is like this: Account Date Value A 31/12/2022 $200 B 31/12/2022 $300 C ...
- 3 years ago
Hi, Vegas95 ;
I've made a little modification here.
Sum of A + C = CALCULATE(SUM([Value]),FILTER('Table', YEAR([Date])=2022 && ([Account] ="A" || [Account] ="C")))Or
Sum of A + C = CALCULATE(SUM([Value]),FILTER('Table', YEAR([Date])=2022 && ([Account] in {"A" ,"C"})))The final show:
Best Regards,
Community Support Team _ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Analystmate
3 years agoHelper II
Vegas95 Try this dax to create a measure :
Sum of A + C = CALCULATE(SUM([Value]),YEAR([Date])=2022 && [Account] ="A" || [Account] ="C")