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!Get Fabric certified for FREE! Don't miss your chance! Learn more
I have a table skills that has a column called CanonicalValue and it has two measures: SkillCount and X_PercentileValue
SkillCount = CALCULATE(COUNTAX(skills,skills[CanonicalValue]))
X_Percentile_Value =
VAR SummaryTable =
SUMMARIZE (
'skills',
skills[CanonicalValue],
"Count", [SkillCount]
)
RETURN
PERCENTILEX.INC(SummaryTable,[Count],Parameter[Parameter Value])I want to create a third measure that evaluates whether X_Percentile_Value is greater than SkillCount.
This is my current visual layout.
The CanonicalValue column has duplicates and the SkillCount measure reflects the counts correctly.
Solved! Go to Solution.
Hi @daxBeanz ,
What do I need to do after the comparison? You can simply determine this with an if expression.
Greater = IF([X_Percentile_Value]>[SkillCount ],1,0)
Please feel free to correct me and provide more information if I have misunderstood you!
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @daxBeanz ,
What do I need to do after the comparison? You can simply determine this with an if expression.
Greater = IF([X_Percentile_Value]>[SkillCount ],1,0)
Please feel free to correct me and provide more information if I have misunderstood you!
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @daxBeanz
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 67 | |
| 59 | |
| 47 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 103 | |
| 37 | |
| 27 | |
| 26 |