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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
To get percentage, I'm using a measure
Percentage=sum(NumUsers)/calculate(sum(NumUsers),Allselected(Event))
I know, power bi has a formula for percentiles but I cannot use it on a measure and having percentage as a calculated column is not giving the desired results. Thank you for your assistance.
Event | NumUsers | Percentage | 25th Percentile | 50th Percentile | 75th Percentile |
Write | 50 | 50% | |||
Add Color | 25 | 25% | |||
Add Picture | 15 | 15% | |||
Add document | 10 | 10% | |||
Total | 100 |
if I understand correctly you want to create 3 measures:
25th Percentile | 50th Percentile |
75th Percentile |
correct?
what would be the values for these measures? TRUE/FALSE, % value, something else?
That is right. I want the values to be percentiles not true/false
can you share how the expected output would look like?
User | Count |
---|---|
10 | |
9 | |
7 | |
4 | |
4 |