Your manager asks for a quick monthly sales summary: total revenue, average sale, highest sale, lowest sale and number of orders. You could calculate manually, but functions do it faster and more accurately.

What are Excel functions?

A function is a ready-made formula in Excel. Instead of writing long calculations manually, you use a function name and a range.

Example: =SUM(G4:G11) adds all values from G4 to G11.

Simple structure: Function name + opening bracket + range + closing bracket.

Essential functions at a glance

FunctionPurposeExampleBusiness Use
SUMAdds values=SUM(G4:G11)Total sales
AVERAGEFinds average=AVERAGE(G4:G11)Average order value
MAXHighest value=MAX(G4:G11)Highest sale
MINLowest value=MIN(G4:G11)Lowest sale
COUNTCounts numeric cells=COUNT(G4:G11)Number of orders

SUM function

=SUM(G4:G11) adds all numbers in the selected range. Use it for total sales, total cost, total quantity or total profit.

AVERAGE function

=AVERAGE(G4:G11) calculates the average of the selected numbers. In sales reporting, this is useful for average order value.

MAX and MIN functions

=MAX(G4:G11) gives the highest sale. =MIN(G4:G11) gives the lowest sale. These functions help you quickly spot extremes.

SUMTotal
MAXHighest
MINLowest

COUNT function

=COUNT(G4:G11) counts numeric cells. It is useful for counting the number of sales records, orders or numeric responses.

💡
Professional habit: Always check that your selected range includes all records and does not include blank rows or unrelated totals.
⚠️
Common mistake: Selecting only part of the range. A wrong range gives a wrong summary.
🧪 Practice Lab

Create a sales summary using functions

Download one ZIP file containing the practice workbook, challenge workbook, solution workbook, cheat sheet, quiz and answer key.

📦 Download Lesson 7 ResourcesWorks as a standalone file and after website deployment

Mini practice

  1. Calculate Total Sales using SUM.
  2. Calculate Average Sale using AVERAGE.
  3. Find Highest Sale using MAX.
  4. Find Lowest Sale using MIN.
  5. Count number of orders using COUNT.

Quick quiz

  1. Which function adds values?
  2. Which function finds average?
  3. Which function finds highest sale?
  4. Which function counts numeric cells?

Answers: SUM, AVERAGE, MAX, COUNT.

FAQ

A formula is any calculation you create. A function is a ready-made formula built into Excel.
COUNT counts numeric cells. For text values, Excel has other functions such as COUNTA.