Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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 measure below :
Measure = CALCULATE( SUM( FACT[Value]), FILTER(DimCategory, DimCategory[Category] = "Marker")
, FILTER(DimDept, DimDept[Dept] =1 , ALL(DimHierarchy) )
The ALL(DimHierarchy) is not ignoring the Filter context in DimHierarchy table. I need other filters of Marker and dept =1 to filter through but the dimhierarchy should return grandtotal of the table .
How can i make this dax working. thanks
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.
@Anonymous , if you selected something from DimHierarchy and then using all, you will get the value summed up against that value only
I explained this case in details here :: Need of an Independent Table in Power BI: https://youtu.be/lOEW-YUrAbE
I have watched the video and it is not what i was looking for.
I needed the rollup from DimHierarchy table despite I am filtering category Marker from another table
Please can you elaborate with DAX because I look at the video and I'm still confused.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
75 | |
46 | |
44 | |
34 |
User | Count |
---|---|
179 | |
89 | |
69 | |
47 | |
47 |