Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi experts!
I have a report with multiple visuals. To make it as easy as possible to maintain this report, I have some filters on "Filters on all pages".
Now I have 1 matrix visual with 1 measure where I would like to disable this filter. But how?
It is a simple SUMX function like this:
MIN =
SUMX (
VALUES ( 'Attributes'[Article] ),
MIN ( [Budget], [Sales] )
Do I need a CALCULATE + ALL or ALLEXPECT?
Solved! Go to Solution.
Hi @joshua1990
I think the best practice here would be the following:
MIN =
SUMX(
VALUES ( 'Attributes'[Article] ),
CALCULATE(
MIN ( [Budget], [Sales] ),
REMOVEFILTERS ( Table[Column] )
)
)
where "Table[Column]" is the column you use in your filter on all pages. Let me know if this works.
If this measure works, please mark my answer as a solution to help people with the same question as you in the future.
Best,
Hi @joshua1990
I think the best practice here would be the following:
MIN =
SUMX(
VALUES ( 'Attributes'[Article] ),
CALCULATE(
MIN ( [Budget], [Sales] ),
REMOVEFILTERS ( Table[Column] )
)
)
where "Table[Column]" is the column you use in your filter on all pages. Let me know if this works.
If this measure works, please mark my answer as a solution to help people with the same question as you in the future.
Best,
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
6 |