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
laurenspruce
Regular Visitor

Percentiles based on another column

Hi all,

I would like to be able to specify a percentage, let's say 50% of the distinct values in column A. So in this case (0.5 * 6 distinct colours = 3). And for the output to return a value for which there are that many colours above in column B. 

 

For example:

50% of 6 colours is 3 and therefore the output would be a B value between 10.71 and 10.99 because then there would be Orange, Pink and Blue with a value above. Please see below table for clarity.

laurenspruce_0-1605176082749.png

 

Really difficult one to explain so I hope that makes sense, any help would be really appreciated. Not even sure if it's at all possible. Have been playing around with the DAX Percentile function however can only get it to return the percentile based on column B which doesn't give me what I need.

1 ACCEPTED SOLUTION
westwrightj
Resolver III
Resolver III

Hey @laurenspruce 

 

  I think I see what you are trying to do here. There are a bunch of ways we could go about doing this. Let me know if this helps.

 

I am assuming you want to treat each row as a different score so I've included an Index column to make each entry have a unique ID. But as you mentioned you want percentile based on the color and not based on the individual unique row scores.

westwrightj_0-1605202608789.png

 

First we can make a measure that sums the total numerical value

 

Total Number = 
SUM(Data[Number])

 

Next we can make our Percentile calculated column.

The Percentile Column = 

var TheNumber= [Total Number]

var TheCalc =         CALCULATE(DISTINCTCOUNT(Data[Color]), FILTER(ALL(Data), Data[Number] < TheNumber))
/
        CALCULATE(DISTINCTCOUNT(Data[Color]), ALL(Data)) + 0
return

IF(TheCalc = 0, .01, TheCalc)

 

Now our table will look like this

 

westwrightj_3-1605203497619.png

 

 

From here you should be able to select the filters and create the measures you are looking for.

 

View solution in original post

2 REPLIES 2
westwrightj
Resolver III
Resolver III

Hey @laurenspruce 

 

  I think I see what you are trying to do here. There are a bunch of ways we could go about doing this. Let me know if this helps.

 

I am assuming you want to treat each row as a different score so I've included an Index column to make each entry have a unique ID. But as you mentioned you want percentile based on the color and not based on the individual unique row scores.

westwrightj_0-1605202608789.png

 

First we can make a measure that sums the total numerical value

 

Total Number = 
SUM(Data[Number])

 

Next we can make our Percentile calculated column.

The Percentile Column = 

var TheNumber= [Total Number]

var TheCalc =         CALCULATE(DISTINCTCOUNT(Data[Color]), FILTER(ALL(Data), Data[Number] < TheNumber))
/
        CALCULATE(DISTINCTCOUNT(Data[Color]), ALL(Data)) + 0
return

IF(TheCalc = 0, .01, TheCalc)

 

Now our table will look like this

 

westwrightj_3-1605203497619.png

 

 

From here you should be able to select the filters and create the measures you are looking for.

 

That seems to have done the job.

 

Many thanks, really appreciate you taking the time to help me out!

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.