Forum Discussion
Apple08
Helper IV
3 years agoSumX with multiple filters
Hi All I have a DAX below to get the Planning[Planned_hours], however I need to add in more filters Planning[Status] = "Red" or "Amber" or "Green". Please could anyone help? Many thanks. P...
- 3 years ago
Planned Hours = SUMX(FILTER(Planning,Planning[name]='Supplier'[Supplier] && Planning[MMM-YY]='Supplier'[MMM-YY] && Planning[Status] IN {"Red","Amber","Green"}),Planning[Planned_hrs])
sjoerdvn
Solution Sage
3 years agoCan you provide more context? Are you building a measure or a computed column? Does the DAX above even work? Have you tried to simply add a filter or slicer on Planning[Status] ?