Forum Discussion

CPage-WF's avatar
CPage-WF
Regular Visitor
2 years ago
Solved

90th Percentile Issues (Not displaying correctly)

I am having issues with capturing the 90th percentile of a given set of data.  I have used all the percentile forumals below with no luck.  While it returns results, they seem to be incorrect.   P...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi CPage-WF ,
    You can try to write the result you want in Dax, i have created an example below:

    PERCENTILE.EXC = 
    VAR _1 =
        ISO.CEILING( COUNTAX ( 'Public-Dashboard', 'Public-Dashboard'[Index] ) * 0.9, 1 )
    RETURN
        CALCULATE (
            SUM ( 'Public-Dashboard'[Unit Turnout Time] ),
            'Public-Dashboard'[Index] = _1
        )

     

    Final output:

     

    How to Get Your Question Answered Quickly - Microsoft Fabric Community

    If it does not help, please provide more details with your desired out put and pbix file without privacy information.

     

    Best Regards,

    Ada Wang

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