Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
I'm borrowing from a previous unanswered question found in the link below:
I have a similarly structured table that has data that looks like the one below. I'm looking for percentile that is dynamic (I'm thinking it's going to have to be a measure) based on a filter or set of filters (was thinking ALLSELECTED would have to be used but I'm unsure).
I need to see the 50th Percentile Lead time by quarter and/or by site dynamically in a visual. I did look into the percentile visual but could not get it to work the way i require it to work. The Materials are unique to a site, so that is not a concern.
I would have to see 50th Percentile Lead time by site, 50th percentile lead time by quarter and then see 50th percentile lead time by quarter and site together.
If this data were to extend to 2016Q3 and 2016 Q4, would it be possible to treat the values compared in percentile as the sum of each quarter?
Please help!
Site | Quarter | Material | Lead Time |
Italy | 2016Q1 | POL1 | 125 |
Italy | 2016Q1 | POL2 | 110 |
Malaysia | 2016Q1 | POL3 | 90 |
Malaysia | 2016Q1 | POL4 | 87 |
Japan | 2016Q1 | EPI1 | 110 |
Japan | 2016Q1 | EPI2 | 98 |
Italy | 2016Q2 | POL5 | 115 |
Italy | 2016Q2 | POL6 | 100 |
Malaysia | 2016Q2 | POL7 | 80 |
Malaysia | 2016Q2 | EPI3 | 77 |
Japan | 2016Q2 | POL8 | 100 |
Edit:
I believe I'm looking for CALCULATE(SUM(CALCULATE(PERCENTILE(TABLE[Lead Time]),.5), ALLSELECTED(Table[MATERIAL]))
but the sum function only accepts a column reference as an argument.
You may try PERCENTILEX.INC Function.