Forum Discussion

itchyeyeballs's avatar
itchyeyeballs
Icon for Impactful Individual rankImpactful Individual
9 years ago
Solved

percentilex.inc includes blanks

Hi all,   I have an issue with the percentileX function.   PERCENTILEX.INC(TableA,[Measure1],.9) The output is including all values from TableA even if measure1 returns blank for them. (I confir...
  • v-ljerr-msft's avatar
    9 years ago

    Hi itchyeyeballs,

     

    In addition to OwenAuger's solution, the formula below should also work.

    =
    PERCENTILEX.INC (
        FILTER ( TableA, NOT ( ISBLANK ( [Measure1] ) ) ),
        [Measure1],
        .9
    )

    Regards