Forum Discussion
Anonymous
5 years agoNot applicable
DAX ALL function not working with multiple filter
I have 3 dimension and 1 fact tables. I want calculate the sum(Fact[Value]) that filter through the dimension tables except that one dimension table should ignore the filter context, see my dax measu...
v-kkf-msft
5 years agoCommunity Support
Hi Anonymous ,
Try the following formula:
Measure =
CALCULATE(
SUM( FACT[Value]),
DimCategory[Category] = "Marker",
DimDept[Dept] = 1,
ALL('Fact'[Hierarchy])
)
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.