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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors