Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Good morning! I need your help with calculating 99 persentile for values for a changing time period. I select a date range in the slicer and the persentile for that time in the table should be calculated. I tried creating a measure with the formula "Percentile = PERCENTILE.INC('public history'[Value], 0.99)" but I need to end up with a single value, not for each point in time from that date range.
I'm counting on your help!
Solved! Go to Solution.
Hi @pg151307 -adjust measure to calculate a single 99th percentile value for a selected date range in Power BI
Percentile99 =
VAR SelectedValues =
CALCULATETABLE(
'public history',
ALLSELECTED('public history'[Date])
)
RETURN
PERCENTILEX.INC(SelectedValues, 'public history'[Value], 0.99)
Hope this approch works, check it.
Proud to be a Super User! | |
Hi @pg151307 -adjust measure to calculate a single 99th percentile value for a selected date range in Power BI
Percentile99 =
VAR SelectedValues =
CALCULATETABLE(
'public history',
ALLSELECTED('public history'[Date])
)
RETURN
PERCENTILEX.INC(SelectedValues, 'public history'[Value], 0.99)
Hope this approch works, check it.
Proud to be a Super User! | |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
79 | |
53 | |
39 | |
39 |
User | Count |
---|---|
104 | |
85 | |
47 | |
44 | |
43 |