Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hello DAX experts,
That is my first question here 🙂
I have a measure with many REMOVEFILTERS:
Store Vals =
CALCULATE(SUM(pbiFact[Sale]),
REMOVEFILTERS('pbiDepartments'[Department]),
REMOVEFILTERS('pbiSubCategories'[SubCategory]),
REMOVEFILTERS('pbiCategories'[Category]),
REMOVEFILTERS('pbiProducts'[Product])
)
That I use in another measure:
Solved! Go to Solution.
you can then use allexcept()
https://docs.microsoft.com/en-us/dax/allexcept-function-dax
Proud to be a Super User!
can i first ask what you actually trying to end up with. Are you just wanting to sum the value filter free? ie you want all to divide into?
I think what you looking to do is use the all function.
% of Stores Vals =
DIVIDE (
[Vals],
CALCULATE ( SUM ( pbiFact[Sale] ), ALL ( [pbiFact] ) ),
BLANK ()
)
this video might help.
https://www.youtube.com/watch?v=AIk1vPM-u2I
Proud to be a Super User!
Vanessa, thanks for your fast answer.
ALL remove all filters. I need to keep filters (Year,..., YTD)
and just remove Hierarchy filters (like Dept, Cat, SubCat, Product).
I thought there is something like:
CALCULATE ( SUM ( pbiFact[Sale] ), keep row context and all dates filters except hierarchy filters )
Thanks. Icad.
CST, thank you for your help 🙂
I'll try again later and post here. Icad.
you can then use allexcept()
https://docs.microsoft.com/en-us/dax/allexcept-function-dax
Proud to be a Super User!
Vanessa, sorry for the delay (bad times).
ALLEXCEPT doesn't work for me, maybe because I'm too tired.
I'll try again later and let you know.
Thanks again for your valuable time. Icad
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
103 | |
68 | |
47 | |
39 | |
37 |