Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have this measure, I need the percentile lines on visuals to stay constant even if we select another company. so that we can see if a client falls above/below certain constant percentile values when selected.
I am not sure which part I am doing wrong,
Solved! Go to Solution.
Hi @Kaii
Us ethis if you want to ignore all filters on the 'Table', ensuring that the percentile calculation is based on all data, regardless of any selections made on the 'Company' column.
Measure =
VAR _ATABLE =
SUMMARIZE(
ALL('Table'),
'Table'[Company],
"VALUE", SUM('Table'[VALUE])
)
RETURN
CALCULATE(
PERCENTILEX.INC(_ATABLE, [VALUE], 0.5)
)
If you want to ensure that only the 'Company' filter is ignored while other filters are respected, you can modify it like this:
Measure =
VAR _ATABLE =
SUMMARIZE(
ALL('Table'[Company]),
'Table'[Company],
"VALUE", SUM('Table'[VALUE])
)
RETURN
CALCULATE(
PERCENTILEX.INC(_ATABLE, [VALUE], 0.5)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hi @Kaii
Us ethis if you want to ignore all filters on the 'Table', ensuring that the percentile calculation is based on all data, regardless of any selections made on the 'Company' column.
Measure =
VAR _ATABLE =
SUMMARIZE(
ALL('Table'),
'Table'[Company],
"VALUE", SUM('Table'[VALUE])
)
RETURN
CALCULATE(
PERCENTILEX.INC(_ATABLE, [VALUE], 0.5)
)
If you want to ensure that only the 'Company' filter is ignored while other filters are respected, you can modify it like this:
Measure =
VAR _ATABLE =
SUMMARIZE(
ALL('Table'[Company]),
'Table'[Company],
"VALUE", SUM('Table'[VALUE])
)
RETURN
CALCULATE(
PERCENTILEX.INC(_ATABLE, [VALUE], 0.5)
)
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Hey just one problem, when I select the other filter, those lines return as 0 not sure why
bump
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |