Microsoft Excel provides a wide range of built-in statistical functions that are essential for analyzing data, finding patterns, and making data-driven decisions. These basic statistical functions help summarize datasets and provide insights into the central tendency, dispersion, and distribution of data.
This comprehensive guide explains all the commonly used basic statistical functions in Excel, including their syntax, examples, and practical applications in real-world scenarios.
Statistical functions in Excel are formulas that allow users to perform calculations on datasets to understand characteristics such as the mean (average), median, mode, minimum, maximum, standard deviation, variance, and more.
Calculates the arithmetic mean of a set of numbers.
=AVERAGE(number1, [number2], ...)
=AVERAGE(A1:A5)
This returns the average of the numbers in cells A1 to A5.

Returns the median (middle number) of a given dataset.
=MEDIAN(number1, [number2], ...)=MEDIAN(A1:A5)
Returns the most frequently occurring number in a dataset.
=MODE.SNGL(number1, [number2], ...)=MODE.SNGL(A1:A5)
Returns the largest number in a dataset.
=MAX(number1, [number2], ...)
=MAX(A1:A5)Returns the smallest number in a dataset.
=MIN(number1, [number2], ...)=MIN(A1:A5)
Counts the number of numeric values in a range.
=COUNT(value1, [value2], ...)
=COUNT(A1:A10)Counts the number of non-empty cells in a range.
=COUNTA(value1, [value2], ...)
=COUNTA(A1:A10)Estimates the standard deviation based on a sample.
=STDEV.S(number1, [number2], ...)
=STDEV.S(A1:10)Estimates the variance based on a sample.
=VAR.S(number1, [number2], ...)
=VAR.S(A1:A5)
Returns the k-th largest value in a dataset.
=LARGE(array, k)
=LARGE(A1:A5, 2)This returns the second-largest number in the range A1 to A5.

Returns the k-th smallest value in a dataset.
=SMALL(array, k)
=SMALL(A1:A5, 2)Returns the k-th percentile of values in a dataset (inclusive method).
=PERCENTILE.INC(array, k)
=PERCENTILE.INC(A1:A5, 0.75)Returns the quartile of a dataset (inclusive method).
=QUARTILE.INC(array, quart)
=QUARTILE.INC(A1:A5, 1)
Returns the rank of a number within a dataset.
=RANK.EQ(number, ref, [order])
=RANK.EQ(A2, A1:A5, 0)
Rounding numbers to a specific number of decimal places.
=ROUND(number, num_digits)
=ROUNDUP(number, num_digits)
=ROUNDDOWN(number, num_digits)
=ROUND(A2, 2)
| Function | Purpose |
|---|---|
| AVERAGE | Calculates the mean |
| MEDIAN | Returns the middle value |
| MODE.SNGL | Returns the most frequent number |
| MAX | Finds the maximum value |
| MIN | Finds the minimum value |
| COUNT | Counts numeric entries |
| COUNTA | Counts non-empty cells |
| STDEV.S | Estimates standard deviation |
| VAR.S | Estimates variance |
| LARGE | Finds the k-th largest value |
| SMALL | Finds the k-th smallest value |
| PERCENTILE.INC | Finds the k-th percentile |
| QUARTILE.INC | Finds quartiles |
| RANK.EQ | Finds the rank of a number |
| ROUND | Rounds a number |
Mastering basic statistical functions in Excel empowers you to quickly analyze datasets, summarize key information, and make better decisions based on data. Whether you are a student, data analyst, or business professional, these functions are foundational tools for data analysis, reporting, and visualization.
By integrating these functions into your Excel workflow, you can easily perform statistical analysis on sales data, survey results, financial records, and scientific data sets. Keep practicing these formulas to enhance your Excel skills and become proficient in data analysis using Excel.
Go to View β Freeze Panes to keep a row or column visible while scrolling.
Select data β Click Insert β Chart β Choose a chart type (bar, line, pie, etc.).
=IF(A1>10, "High", "Low") returns "High" if A1 is greater than 10; otherwise, it returns "Low".
Relative (A1): Changes when copied.
Select data β Click Insert β PivotTable β Choose where to place it.
VLOOKUP: Searches vertically in columns.
Click File β Save As, choose a location, enter a filename, and select a format (e.g., .xlsx, .csv).
Select column β Click Data β Text to Columns β Choose delimiter (e.g., comma, space).
Use =SUM(A1:A5) to add values in the range A1 to A5.
Use =COUNTIF(A1:A10, ">50") to count numbers greater than 50 in A1:A10.
Select data β Click Data β Remove Duplicates.
Count numbers: =COUNT(A1:A10)
Select cells β Click Conditional Formatting in the Home tab β Choose a rule (e.g., highlight values greater than 50).
Click the Pivot Table β Click Refresh under the PivotTable Analyze tab.
Select a cell β Data β Data Validation β Set rules (e.g., allow only numbers or dropdown lists).
Excel is a spreadsheet software used for data analysis, calculations, graphing, and automation.
It searches for a value in the first column of a range and returns a value from another column.
Use =A1 & " " & B1 or =CONCATENATE(A1, " ", B1).
Copyrights © 2024 letsupdateskills All rights reserved