- How do I convert a percentage (like 75%) into the k value PERCENTILE.INC needs?
- Divide the percentage by 100. The 75th percentile uses k=0.75, the 30th uses k=0.30. If you have a cell with the text '75%', use =PERCENTILE.INC(array, value/100) to convert it, or manually enter 0.75.
- Why does PERCENTILE.INC return a decimal when all my data is whole numbers?
- PERCENTILE.INC interpolates linearly between data points when k falls between two values. For example, the 90th percentile of [1, 2, 3, 4, 5] returns 4.6 (between 4 and 5), not 5. This interpolation gives a more statistically accurate result than rounding to the nearest data point.
- Can PERCENTILE.INC handle data that isn't normally distributed?
- Yes, absolutely. PERCENTILE.INC is distribution-free—it works with any shape of data: uniform, skewed, bimodal, or irregular. It simply finds the position that splits your data at a given percentage, regardless of distribution shape.
- What's the difference between PERCENTILE.INC and PERCENTILE.EXC?
- PERCENTILE.INC (inclusive) accepts k from 0 to 1, where k=0 gives the minimum and k=1 gives the maximum. PERCENTILE.EXC (exclusive) only accepts k strictly between 0 and 1, excluding the endpoints. Use PERCENTILE.INC for most analyses unless you specifically want to exclude min/max values.