Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
i have created a measure that calculates a oercentage with a filter. i have the same filter in my table visual but i want to ignore the filter that is in the visual and apply the filter in the measure.
example:
accessories achievement = calculate(achievement * .1 , category[type]= accessories, all(category[type))
my table visual should show the below
category | type | core achievement | accessories achievement |
gross aad | core | 94 | 8 |
renewal | core | 90 | 7 |
note: there's a filter on page level for the column type=core. i want to show accessories achievemnet with type= accessories ignoring this page level filter= core.
currently with the measure i created above, accessories achievement is showing blank.
Hi @lawadaa
Assuming "Accessories" type do exist in the specified categories, please try
Accessories Achievement =
CALCULATE (
[Achievement] * 0.1,
ALL ( Category ),
VALUES ( Category[Category] ),
Category[type] = "Accessories"
)
Interactions can be edited between the filter that is in the visual and the measure table.
the filter is in the filter pane and not in the page. interaction cant be applied as the filter is on the same column it's just that i want to filter the value in the column
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
26 | |
20 | |
18 | |
14 | |
13 |
User | Count |
---|---|
43 | |
36 | |
23 | |
22 | |
21 |