Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
shhafiz
Microsoft Employee
Microsoft Employee

Measure to get Row Meeting Specific Condition

I have the following data:

 

AgeOccurrenceCumulative Percentage
1020041.93
1112067.09
1215098.53
137100

 

The total count of occurrence is: 477

Cumulative Percentage is calculated by summing occurrence upto the row and getting the percentage off total.

 

I am trying to find the row which will cover at least 95% of the occurrence, which in the sample case is: 12 (98.53 is the first row greater than or equal 95).

I would like to show the value 12 as a measure on a Card visual.

 

I understand for us to compute this without ambiguity, there should be sorting order on the Age column, which for our case we have as ascending integer.

1 ACCEPTED SOLUTION
Nathaniel_C
Community Champion
Community Champion

Hi @shhafiz ,

 

First Age 95% or Over = CALCULATE(MIN('Table'[Age]), 'Table'[Cumulative Percentage]>=95)

 

So we filter the table to only include those values at least 95, and then take the youngest age.
Please try this.
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel

Measure to get Row Meeting Specific Condition.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
Nathaniel_C
Community Champion
Community Champion

Hi @shhafiz ,

 

First Age 95% or Over = CALCULATE(MIN('Table'[Age]), 'Table'[Cumulative Percentage]>=95)

 

So we filter the table to only include those values at least 95, and then take the youngest age.
Please try this.
Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel

Measure to get Row Meeting Specific Condition.PNG

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.