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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
shhafiz
Employee
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
Super User
Super User

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
Super User
Super User

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors