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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
inascargio
Frequent Visitor

Percentile

Hi all,
I am struggling with the following problem: I have a sample data set where I need to calculate the n percentile (say 10% percentile) for records pertaining to a given group (column Area). The percentile of each group should then be reported in an additional column.

unnamed.png

Thank you
giovanni

 

 

2 ACCEPTED SOLUTIONS
v-yiruan-msft
Community Support
Community Support

Hi @inascargio ,

You can refer the following links to get it:

By DAX:

powerbi - Calculating percentiles by group in Power BI - Stack Overflow

P10 =
    PERCENTILEX.INC (
        ALLSELECTED ( 'Table'[Area] ),
        CALCULATE ( SUM ( 'Table'[Custom.Peso] ) ),
        0.1
    )

By Power Query:

New Percentiles Transformation in Power Query | Microsoft Power Query

vyiruanmsft_0-1684736992270.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

Hi @v-yiruan-msft ,

thanks for the reply.

I followed the DAX solution and slightly modifiied the approach as follows:

=CALCULATE(PERCENTILEX.INC('Table1  2';[Custom.Peso];0,1); ALLSELECTED('Table1  2'[Custom.Gestore]))

And I managed to get exactly the output I needed (see snapshot below).

Thanks

inascargio

image001.png

 

View solution in original post

2 REPLIES 2
v-yiruan-msft
Community Support
Community Support

Hi @inascargio ,

You can refer the following links to get it:

By DAX:

powerbi - Calculating percentiles by group in Power BI - Stack Overflow

P10 =
    PERCENTILEX.INC (
        ALLSELECTED ( 'Table'[Area] ),
        CALCULATE ( SUM ( 'Table'[Custom.Peso] ) ),
        0.1
    )

By Power Query:

New Percentiles Transformation in Power Query | Microsoft Power Query

vyiruanmsft_0-1684736992270.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yiruan-msft ,

thanks for the reply.

I followed the DAX solution and slightly modifiied the approach as follows:

=CALCULATE(PERCENTILEX.INC('Table1  2';[Custom.Peso];0,1); ALLSELECTED('Table1  2'[Custom.Gestore]))

And I managed to get exactly the output I needed (see snapshot below).

Thanks

inascargio

image001.png

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.