Microsoft Excel Tutorials

Excel - Basic Statistical Functions

Excel - Basic Statistical Functions: Complete Guide with Examples

Basic Statistical Functions in Excel

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.

What are Statistical Functions in Excel?

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.

1. AVERAGE Function

Purpose:

Calculates the arithmetic mean of a set of numbers.

Syntax:

=AVERAGE(number1, [number2], ...)

Example:

=AVERAGE(A1:A5)

This returns the average of the numbers in cells A1 to A5.


2. MEDIAN Function

Purpose:

Returns the median (middle number) of a given dataset.

Syntax:

=MEDIAN(number1, [number2], ...)

Example:

=MEDIAN(A1:A5)

3. MODE.SNGL Function

Purpose:

Returns the most frequently occurring number in a dataset.

Syntax:

=MODE.SNGL(number1, [number2], ...)

Example:

=MODE.SNGL(A1:A5)

4. MAX Function

Purpose:

Returns the largest number in a dataset.

Syntax:

=MAX(number1, [number2], ...)

Example:

=MAX(A1:A5)

5. MIN Function

Purpose:

Returns the smallest number in a dataset.

Syntax:

=MIN(number1, [number2], ...)

Example:

=MIN(A1:A5)

6. COUNT Function

Purpose:

Counts the number of numeric values in a range.

Syntax:

=COUNT(value1, [value2], ...)

Example:

=COUNT(A1:A10)

7. COUNTA Function

Purpose:

Counts the number of non-empty cells in a range.

Syntax:

=COUNTA(value1, [value2], ...)

Example:

=COUNTA(A1:A10)

8. STDEV.S Function

Purpose:

Estimates the standard deviation based on a sample.

Syntax:

=STDEV.S(number1, [number2], ...)

Example:

=STDEV.S(A1:10)

9. VAR.S Function

Purpose:

Estimates the variance based on a sample.

Syntax:

=VAR.S(number1, [number2], ...)

Example:

=VAR.S(A1:A5)


10. LARGE Function

Purpose:

Returns the k-th largest value in a dataset.

Syntax:

=LARGE(array, k)

Example:

=LARGE(A1:A5, 2)

This returns the second-largest number in the range A1 to A5.


11. SMALL Function

Purpose:

Returns the k-th smallest value in a dataset.

Syntax:

=SMALL(array, k)

Example:

=SMALL(A1:A5, 2)

12. PERCENTILE.INC Function

Purpose:

Returns the k-th percentile of values in a dataset (inclusive method).

Syntax:

=PERCENTILE.INC(array, k)

Example:

=PERCENTILE.INC(A1:A5, 0.75)

13. QUARTILE.INC Function

Purpose:

Returns the quartile of a dataset (inclusive method).

Syntax:

=QUARTILE.INC(array, quart)
  • 1 = First Quartile (25%)
  • 2 = Median (50%)
  • 3 = Third Quartile (75%)

Example:

=QUARTILE.INC(A1:A5, 1)

14. RANK.EQ Function

Purpose:

Returns the rank of a number within a dataset.

Syntax:

=RANK.EQ(number, ref, [order])

Example:

=RANK.EQ(A2, A1:A5, 0)

15. ROUND, ROUNDUP, ROUNDDOWN

Purpose:

Rounding numbers to a specific number of decimal places.

Syntax:

=ROUND(number, num_digits)
=ROUNDUP(number, num_digits)
=ROUNDDOWN(number, num_digits)

Example:

=ROUND(A2, 2)

Summary Table of Basic Statistical Functions

FunctionPurpose
AVERAGECalculates the mean
MEDIANReturns the middle value
MODE.SNGLReturns the most frequent number
MAXFinds the maximum value
MINFinds the minimum value
COUNTCounts numeric entries
COUNTACounts non-empty cells
STDEV.SEstimates standard deviation
VAR.SEstimates variance
LARGEFinds the k-th largest value
SMALLFinds the k-th smallest value
PERCENTILE.INCFinds the k-th percentile
QUARTILE.INCFinds quartiles
RANK.EQFinds the rank of a number
ROUNDRounds 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.

Beginner 5 Hours
Excel - Basic Statistical Functions: Complete Guide with Examples

Basic Statistical Functions in Excel

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.

What are Statistical Functions in Excel?

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.

1. AVERAGE Function

Purpose:

Calculates the arithmetic mean of a set of numbers.

Syntax:

=AVERAGE(number1, [number2], ...)

Example:

=AVERAGE(A1:A5)

This returns the average of the numbers in cells A1 to A5.


2. MEDIAN Function

Purpose:

Returns the median (middle number) of a given dataset.

Syntax:

=MEDIAN(number1, [number2], ...)

Example:

=MEDIAN(A1:A5)

3. MODE.SNGL Function

Purpose:

Returns the most frequently occurring number in a dataset.

Syntax:

=MODE.SNGL(number1, [number2], ...)

Example:

=MODE.SNGL(A1:A5)

4. MAX Function

Purpose:

Returns the largest number in a dataset.

Syntax:

=MAX(number1, [number2], ...)

Example:

=MAX(A1:A5)

5. MIN Function

Purpose:

Returns the smallest number in a dataset.

Syntax:

=MIN(number1, [number2], ...)

Example:

=MIN(A1:A5)

6. COUNT Function

Purpose:

Counts the number of numeric values in a range.

Syntax:

=COUNT(value1, [value2], ...)

Example:

=COUNT(A1:A10)

7. COUNTA Function

Purpose:

Counts the number of non-empty cells in a range.

Syntax:

=COUNTA(value1, [value2], ...)

Example:

=COUNTA(A1:A10)

8. STDEV.S Function

Purpose:

Estimates the standard deviation based on a sample.

Syntax:

=STDEV.S(number1, [number2], ...)

Example:

=STDEV.S(A1:10)

9. VAR.S Function

Purpose:

Estimates the variance based on a sample.

Syntax:

=VAR.S(number1, [number2], ...)

Example:

=VAR.S(A1:A5)


10. LARGE Function

Purpose:

Returns the k-th largest value in a dataset.

Syntax:

=LARGE(array, k)

Example:

=LARGE(A1:A5, 2)

This returns the second-largest number in the range A1 to A5.


11. SMALL Function

Purpose:

Returns the k-th smallest value in a dataset.

Syntax:

=SMALL(array, k)

Example:

=SMALL(A1:A5, 2)

12. PERCENTILE.INC Function

Purpose:

Returns the k-th percentile of values in a dataset (inclusive method).

Syntax:

=PERCENTILE.INC(array, k)

Example:

=PERCENTILE.INC(A1:A5, 0.75)

13. QUARTILE.INC Function

Purpose:

Returns the quartile of a dataset (inclusive method).

Syntax:

=QUARTILE.INC(array, quart)
  • 1 = First Quartile (25%)
  • 2 = Median (50%)
  • 3 = Third Quartile (75%)

Example:

=QUARTILE.INC(A1:A5, 1)

14. RANK.EQ Function

Purpose:

Returns the rank of a number within a dataset.

Syntax:

=RANK.EQ(number, ref, [order])

Example:

=RANK.EQ(A2, A1:A5, 0)

15. ROUND, ROUNDUP, ROUNDDOWN

Purpose:

Rounding numbers to a specific number of decimal places.

Syntax:

=ROUND(number, num_digits)
=ROUNDUP(number, num_digits)
=ROUNDDOWN(number, num_digits)

Example:

=ROUND(A2, 2)

Summary Table of Basic Statistical Functions

FunctionPurpose
AVERAGECalculates the mean
MEDIANReturns the middle value
MODE.SNGLReturns the most frequent number
MAXFinds the maximum value
MINFinds the minimum value
COUNTCounts numeric entries
COUNTACounts non-empty cells
STDEV.SEstimates standard deviation
VAR.SEstimates variance
LARGEFinds the k-th largest value
SMALLFinds the k-th smallest value
PERCENTILE.INCFinds the k-th percentile
QUARTILE.INCFinds quartiles
RANK.EQFinds the rank of a number
ROUNDRounds 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.

Related Tutorials

Frequently Asked Questions for Microsoft 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.

Absolute ($A$1): Remains fixed when copied.

Select data β†’ Click Insert β†’ PivotTable β†’ Choose where to place it.

VLOOKUP: Searches vertically in columns.

HLOOKUP: Searches horizontally in rows.

VLOOKUP only searches left to right.
INDEX-MATCH is more flexible and allows searches in any direction.

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)

Count non-empty cells: =COUNTA(A1:A10)

Select cells β†’ Click Conditional Formatting in the Home tab β†’ Choose a rule (e.g., highlight values greater than 50).

#DIV/0! β†’ Division by zero error.
#VALUE! β†’ Invalid data type in formula.
#REF! β†’ Cell reference is missing or deleted.

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).

Ctrl + C β†’ Copy
Ctrl + V β†’ Paste
Ctrl + Z β†’ Undo
Ctrl + Shift + L β†’ Apply/Remove filter
Ctrl + T β†’ Convert data to a table

Click Review β†’ Protect Sheet, set a password, and select allowed actions.

Excel is a spreadsheet software used for data analysis, calculations, graphing, and automation.

Check for typos in the formula.
Ensure cells referenced contain valid data.
Remove extra spaces in text values.

It searches for a value in the first column of a range and returns a value from another column.

Example: =VLOOKUP(101, A2:C10, 2, FALSE) looks up 101 in column A and returns the corresponding value from column 2.

Use =A1 & " " & B1 or =CONCATENATE(A1, " ", B1).

line

Copyrights © 2024 letsupdateskills All rights reserved