Using Minimum, Maximum, Averages to aggregate data | Excel Tutorial - Learn with VOKS
Advance AI Bootstrap C C++ Computer Vision Content Writing CSS Cyber Security Data Analysis Deep Learning Email Marketing Excel Figma HTML Java Script Machine Learning MySQLi Node JS PHP Power Bi Python Python for AI Python for Analysis React React Native SEO SMM SQL
Back Next

Using Minimum, Maximum, Averages to aggregate data

Learn this topic step-by-step with VOKS Tutorials.

1️⃣ What Does “Aggregate Data” Mean?

To aggregate data means:

To summarize a large set of numbers into a single meaningful value.

Instead of looking at 50 sales numbers, you may want:

  • The smallest sale
  • The largest sale
  • The average sale

This is where MIN, MAX, and AVERAGE help.

2️⃣ Example Dataset

Imagine this is your Excel sheet:

| Employee | Sales |
|----------|-------|
| John     | 5000  |
| Mary     | 7200  |
| David    | 6100  |
| Anna     | 4500  |
| James    | 8000  |

Assume:

  • Employee names are in column A
  • Sales are in column B
  • Data range is B2:B6

3️⃣ MIN Function (Minimum)

🔹 What It Does

Returns the smallest number in a range.

🔹 Syntax

=MIN(range)

🔹 Example

=MIN(B2:B6)

Result:

| Calculation     | Result |
|----------------|--------|
| Minimum Sales  | 4500   |

✔ The lowest sales value is 4500 (Anna).

4️⃣ MAX Function (Maximum)

🔹 What It Does

Returns the largest number in a range.

🔹 Syntax

=MAX(range)

🔹 Example

=MAX(B2:B6)

Result:

| Calculation     | Result |
|----------------|--------|
| Maximum Sales  | 8000   |

✔ The highest sales value is 8000 (James).

5️⃣ AVERAGE Function

🔹 What It Does

Returns the mean (average) value.

It adds all numbers and divides by how many there are.

🔹 Syntax

=AVERAGE(range)

🔹 Example

=AVERAGE(B2:B6)

Manual Calculation:

(5000 + 7200 + 6100 + 4500 + 8000) ÷ 5 = 6160

Result:

| Calculation     | Result |
|----------------|--------|
| Average Sales  | 6160   |

✔ The average sales amount is 6160.

6️⃣ Combining MIN, MAX, and AVERAGE

You can create a summary section in Excel like this:

| Metric          | Formula             | Result |
|-----------------|--------------------|--------|
| Minimum Sales   | =MIN(B2:B6)        | 4500   |
| Maximum Sales   | =MAX(B2:B6)        | 8000   |
| Average Sales   | =AVERAGE(B2:B6)    | 6160   |

This is called a summary table.

7️⃣ Using MIN, MAX, AVERAGE with Conditions (Extra Knowledge)

Sometimes you only want to calculate based on a condition.

Example: Only sales above 5000.

Using AVERAGEIF

=AVERAGEIF(B2:B6, ">5000")

Using MINIFS (Excel 2016+)

=MINIFS(B2:B6, B2:B6, ">5000")

Using MAXIFS

=MAXIFS(B2:B6, B2:B6, ">5000")

8️⃣ Real-Life Business Example

Imagine:

| Month   | Expenses |
|---------|----------|
| Jan     | 1200     |
| Feb     | 1500     |
| Mar     | 900      |
| Apr     | 2000     |
| May     | 1100     |

You want:

  • Lowest expense month
  • Highest expense month
  • Average monthly expense

Formulas:

=MIN(B2:B6)
=MAX(B2:B6)
=AVERAGE(B2:B6)

Results:

| Metric               | Value |
|----------------------|-------|
| Lowest Expense       | 900   |
| Highest Expense      | 2000  |
| Average Expense      | 1340  |


QUICK KNOWLEDGE CHECK

Test Your Understanding

Answer 5 questions generated from this lesson. Your result is calculated instantly and is not saved.

0 / 5 answered
All Courses
Advance AI Bootstrap C C++ Computer Vision Content Writing CSS Cyber Security Data Analysis Deep Learning Email Marketing Excel Figma HTML Java Script Machine Learning MySQLi Node JS PHP Power Bi Python Python for AI Python for Analysis React React Native SEO SMM SQL
Course contents
Excel
01 Introduction 02 Setting Up Your Environment 03 Navigating the Worksheet Environment 04 Data Trimming, Sorting and Filtering Tables, Nesting Functions 05 Understanding and Classifying Data Types, Changing to Text and Rounding Values 06 Cleaning the data, Joining text strings, Capitalizing words, Using upper and lower case, Extracting text from cells, Counting characters, Extracting text, Replacing characters 07 Preparing date data, Finding days of the week, Finding the matching column 08 Using Vlookup, Hlookup, Index, Pivot tables and case studies 09 Using count, Counta, Countblank, Count if functions 10 Math Functions in Excel 11 Using Minimum, Maximum, Averages to aggregate data 12 Logical Functions 13 Conditional Aggregation Using the IF Function 14 Getting Familiar with Different Visuals Available in Excel and When to Use Them 15 Analyzing Data with Line and Area Charts 16 Analyzing Data with Stacked Area Chart and 100% Stacked Chart 17 Building a Dashboard in Excel