Skip to content

Latest commit

 

History

History
282 lines (167 loc) · 6.58 KB

File metadata and controls

282 lines (167 loc) · 6.58 KB

📈 Excel-11

Status Excel


✨ Project Description

Excel-11 is a comprehensive guide to statistical functions in Microsoft Excel. Here you'll find practical tips, concise explanations, and illustrated examples for functions such as AVERAGE, AVERAGEIF, MEDIAN, MODE, STDEV, MIN, MAX, LARGE, SMALL, Weighted Average, Moving Average, RAND, RANDARRAY, RANK, Percentiles, Quartiles, Box and Whisker Plot, FORECAST, FREQUENCY, and more.

📚 Goal: Help you master Excel's statistical tools for data analysis, whether you're a student, analyst, or professional.


📒 Table of Contents


🧮 AVERAGE

To calculate the average of a group of numbers, use the AVERAGE function.

Average


🧾 AVERAGEIF & AVERAGEIFS

Use AVERAGEIF to average cells based on one criterion (e.g., excluding zeros).
Use AVERAGEIFS to apply multiple criteria.

AverageIf


🎯 MEDIAN

Find the median (middle number) using the MEDIAN function.

Median

ℹ️ In case of an even number of values, the median is the mean of the two middle numbers.


🔁 MODE

Find the most frequently occurring number with the MODE function.

Mode


📏 Standard Deviation (STDEV, STDEV.P, STDEV.S)

  • STDEV: Calculates standard deviation for a sample (old function).
  • STDEV.P: For the entire population.
  • STDEV.S: For a sample (recommended).

Stdev

ℹ️ Standard deviation indicates how much values differ from the average.


📐 Variance (VAR.P)

Variance is the square of the standard deviation.

Var


🆒 MIN, MAX, LARGE, SMALL

Functions for finding minimum, maximum, largest, and smallest values in a dataset.
(See also examples below for usage with AVERAGE and LARGE.)


🧮 AVERAGEA

AVERAGEA returns the arithmetic mean, treating text and logical values differently than AVERAGE:

  • FALSE and text = 0
  • TRUE = 1

Averagea


🧩 Some Examples with AVERAGE

  • Calculate the average of the top 3 numbers using AVERAGE and LARGE:

Average1

  • Calculate the average of cells that meet criteria with AVERAGEIF:

AverageIf1


⚖️ Weighted Average

Calculate a weighted average using SUMPRODUCT and SUM.

WeightedAverage


📊 Moving Average

Smooth trends in time series data with a moving average.
Use the Analysis ToolPak:

  1. Data tab → Analysis group → Data Analysis
  2. Select "Moving Average"
  3. Choose input range, interval, and output range

Moving1 Moving Moving2 Moving3

📈 The larger the interval, the smoother the trend line.


🎲 Random Numbers (RAND, RANDBETWEEN, RANDARRAY)

  • RAND: Random decimal between 0 and 1

    Rand

  • RANDBETWEEN: Random integer between two values

    RandBetween

  • RANDARRAY: Random array (Excel 365/2021 only)

    RandArray

⚠️ Random numbers update on every recalculation.


🏅 RANK, RANK.AVG, RANK.EQ

  • RANK: Returns rank in a list.
  • RANK.AVG: Average rank if duplicates exist.
  • RANK.EQ: Updated version; works as RANK.

RankAvg

Cool Example (Top N Results, Filtering, Sorting)

  • Use RANK, LARGE, FILTER, and SORT to display top results:

Sort Sort1


📊 Percentiles and Quartiles

  • PERCENTILE: Find e.g. the 30th percentile.

    Percentile

  • QUARTILE: Find the 1st quartile.

    Quartile


📦 Box and Whisker Plot

Shows min, 1st quartile, median, 3rd quartile, and max.

  1. Select range (e.g., A1:A7)
  2. Insert → Statistic Chart → Box and Whisker

Box

  • Median (middle line)
  • Mean (x in box)
  • Whiskers show min/max

📈 FORECAST & FORECAST.LINEAR

  • FORECAST: Old function, now replaced by FORECAST.LINEAR
  • Predicts a value along a linear trend.

Forecast Forecast1

💡 For seasonal data, use FORECAST.ETS (Excel 2016+).


⬆️⬇️ MAXIFS & MINIFS

Find maximum or minimum values based on criteria (Excel 2016+).


📉 FREQUENCY

Calculate how often values fall into bins.

Frequency Frequency1


📋 Descriptive Statistics

Use the Analysis ToolPak to generate summary statistics.

  1. Data tab → Data Analysis
  2. Select "Descriptive Statistics"
  3. Input/output range, check "Summary statistics"

Descriptive Descriptive1


🛠️ How to add Analysis ToolPak

  1. File → Options
  2. Add-ins → Analysis ToolPak → Go
  3. Check Analysis ToolPak → OK
  4. Data tab → Analysis group → Data Analysis

📷 Screenshots

All images can be found in the /Screenshots folder.


ℹ️ Requirements

  • Microsoft Excel (recommended: 2021/365 for modern functions)
  • Windows OS (for some add-ins)

👨‍💻 Author

Project and documentation by Kuba27x
Repository: Kuba27x/Excel-11