Forum Discussion
noannish
6 years agoFrequent Visitor
Multiple filters, trying to include not equal to
The DAX I list below is working fine, but I'm off my DAX game today and when I try to also exlude some values from a different column in the same table I end up just summing everything that doesn't h...
az38
Community Champion
6 years agoHi noannish
try
2018 Item Count = CALCULATE(
SUM(
udv_SalesItems[Value Item Qty]),
udv_SalesItems[Item_Class] IN {"FG1001", "FG1002", "FG1003", "FG1005"},
udv_SalesItems[Date_Year] = 2018,
NOT (udv_SalesItems[Item Produc ID ud5] IN {"1307", "1320", "1321", "1322"})
)do not hesitate to give a kudo to useful posts and mark solutions as solution
- noannish6 years agoFrequent Visitor
Thank you for trying, unfortunately it still sums everything where those ud5s do not exist, giving every item the same amount. Not the end of the world that I can't figure out how to do it within the measure, just would have been nice.
- az386 years ago
Community Champion
maybe
2018 Item Count = CALCULATE( SUM(udv_SalesItems[Value Item Qty]), FILTER(ALL(), AND(AND(udv_SalesItems[Item_Class] IN {"FG1001", "FG1002", "FG1003", "FG1005"}, udv_SalesItems[Date_Year] = 2018), NOT (udv_SalesItems[Item Produc ID ud5] IN {"1307", "1320", "1321", "1322"})) ) )do not hesitate to give a kudo to useful posts and mark solutions as solution