Excel AVERAGE Function

The Excel AVERAGE function is super useful when you want to know the middle value of a set of numbers. It helps you find out what’s “normal” or “typical” in your data.

Let’s learn what it does, how to use it, and explore 5 examples you can relate to in daily life.


What Is the AVERAGE Function?

In simple words:

AVERAGE adds all the numbers and divides the total by how many numbers there are.

It’s like calculating:

(Total Marks) ÷ (Number of Subjects)


Syntax:

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

Or simply:

=AVERAGE(range)


How to Use It (Basic Steps):

  1. Click on the cell where you want the average to appear.
  2. Type =AVERAGE(
  3. Select the cells with your numbers.
  4. Type ) and press Enter.

Example 1: Average of Marks

SubjectMarks
Math80
Science75
English85

Formula:

=AVERAGE(B2:B4)

👉 Result: 80
(80 + 75 + 85) ÷ 3 = 80


Example 2: Average Monthly Expense

MonthExpense (₹)
January12000
February11500
March13000

Formula:

=AVERAGE(B2:B4)

👉 Result: 12166.67
(12000 + 11500 + 13000) ÷ 3

Tip: You can round off with =ROUND(AVERAGE(B2:B4), 0) to get 12167.


Example 3: Average of Selected Cells

Suppose you want to average only a few values (not a full range).

DaySteps Walked
Mon5000
Tue6000
Wed(empty)
Thu7000
Fri8000

Formula:

=AVERAGE(B2, B3, B5)

👉 Result: 6333.33
(5000 + 6000 + 8000) ÷ 3

Note: It skips empty or non-numeric cells automatically.


Example 4: Average Sales with Zero Included

SalespersonSales
A10000
B0
C8000

Formula:

=AVERAGE(B2:B4)

👉 Result: 6000
Because 0 is included in the calculation.

Tip: If you want to skip zero values, you need to filter or use an advanced formula.


Example 5: Average of Time

TaskDuration (in mins)
Email30
Meeting45
Report60

Formula:

=AVERAGE(B2:B4)

👉 Result: 45 mins

Note: Excel can calculate average of time/duration too!


Bonus: Use AutoAverage (No Typing Needed)

  1. Click on the cell below your numbers.
  2. Go to Home > AutoSum (∑) dropdown.
  3. Click Average
  4. Press Enter

Summary

FeatureDescription
Formula=AVERAGE(range)
Skips Empty Cells?Yes
Skips Zero Values?❌ No (It includes them)
Text in Range?Ignored Automatically
Time/Date Averages?✅ Yes, works perfectly

Real-Life Use Cases

  • Find average marks in school
  • Track average expenses per month
  • Calculate average steps walked
  • Compare average sales
  • Know average delivery time

What’s Next?

In the next post, we’ll learn about the COUNT & COUNTA Function.

Spread the love

Leave a Comment

Your email address will not be published. Required fields are marked *

Translate »
Scroll to Top