← 30 Days Excel Series
Day 18 of 30IntermediateAnalysis

Day 18: Statistical Functions for Analysis

5 questions · Excel Interview Preparation

Q1

What is PERCENTILE and how do you use it in data analysis?

PERCENTILE(array, k) returns the value at the k-th percentile of a dataset. k is between 0 and 1. =PERCENTILE(Revenue, 0.9) returns the revenue value at the 90th percentile — 90% of values are below this. Common uses: finding cutoff values for top 10% customers, identifying thresholds for outlier detection, understanding distribution shape. PERCENTILE.INC includes endpoints; PERCENTILE.EXC excludes them — for most analyst uses, PERCENTILE.INC is appropriate.

💡 Interview tip: Use PERCENTILE to set data-driven thresholds rather than arbitrary ones. "Top 10% by revenue" is more defensible than "above ₹5 lakh".
Q2

What is QUARTILE and how does it relate to PERCENTILE?

QUARTILE(array, quart) returns specific percentiles: QUARTILE(data,0) = minimum, QUARTILE(data,1) = 25th percentile (Q1), QUARTILE(data,2) = median (Q2, 50th percentile), QUARTILE(data,3) = 75th percentile (Q3), QUARTILE(data,4) = maximum. Interquartile Range (IQR) = Q3 - Q1, used for outlier detection: values below Q1 - 1.5×IQR or above Q3 + 1.5×IQR are statistical outliers.

💡 Interview tip: IQR-based outlier detection using QUARTILE is a standard technique — know how to calculate it in Excel for data analyst interviews.
Q3

What is RANK and RANK.EQ in Excel?

RANK.EQ(number, ref, [order]) returns the rank of a number within a list. Order 0 = descending (largest = rank 1), Order 1 = ascending (smallest = rank 1). If there are tied values, both receive the same rank and the next rank is skipped. RANK.AVG gives tied values the average of the ranks they would occupy. Use RANK.EQ for leaderboard-style rankings (sales rep rankings, customer rankings) and RANK.AVG for statistical analysis where tied ranks matter.

💡 Interview tip: RANK.EQ is almost always what you want for business reporting. RANK.AVG is for statistical applications where the average rank of ties needs to be preserved.
Q4

What is CORREL and what does it tell you?

CORREL(array1, array2) calculates the Pearson correlation coefficient between two datasets. Returns a value between -1 and 1. 1 = perfect positive correlation (as one increases, the other always increases). -1 = perfect negative correlation. 0 = no linear relationship. In data analysis: =CORREL(Marketing_Spend, Revenue) tells you how strongly marketing spend correlates with revenue. Important: correlation does not imply causation. Also: CORREL only detects linear relationships — a non-linear relationship may still exist even if CORREL is near 0.

💡 Interview tip: Correlation is a starting point, not a conclusion. Always plot the data with a scatter chart to see whether the relationship is truly linear.
Q5

What is STDEV.S and when do you use it vs STDEV.P?

STDEV.S calculates standard deviation for a sample (divides by n-1). STDEV.P calculates for a population (divides by n). In data analysis, use STDEV.S when your data is a sample from a larger population (which is almost always the case — you have transaction data from a period, not all transactions ever). Use STDEV.P only when you have the complete population. Standard deviation measures spread — a high StDev means high variability in the data.

💡 Interview tip: The practical difference between S and P is tiny for large datasets. But use S by default — it is the statistically correct choice for samples.
← Day 17All DaysDay 19

Want 1:1 Excel coaching?

Join EVIKA Academy for live Excel training, real projects, and placement support in Delhi NCR.

Book Free Demo →
Best Data Analytics Course in Noida Delhi NCR | EVIKA ACADEMY