Forum Discussion

itchyeyeballs's avatar
itchyeyeballs
Icon for Impactful Individual rankImpactful Individual
1 year ago
Solved

PercentileX.INC returns blank

Hi all,   I'm trying to do a simple percentilex.inc calculation but the result is returning blank unless I manually select all the values I am grouping on. The DAX is  PERCENTILEX.INC(VALU...
  • itchyeyeballs's avatar
    itchyeyeballs
    1 year ago

    Thank you, you helped me get on the right track.

    I got it working with

     

     

    = PERCENTILEX.INC(
    			Summarize(
    				Facttable,
    				Table1[Group1])
    			),
    			[KPI],
    			0.5
    		)

     

     

    I still have no idea why values acted as it did though.

    Once I was happy it was workng I enhanced it to enable me to filter out smaller groups

     

     

    KPI = PERCENTILEX.INC(
    			FILTER(
    				ALLSELECTED(Table1[Group1]),
    				[KPI_Denominator] >= 5
    			),
    			[KPI],
    			0.5
    		)