Excel Basics
Rows & Columns
Formulas – SUM & AVERAGE
Formulas – IF, MIN & MAX
Conditional Formatting & Challenge
100

What is the difference between a workbook and a worksheet?

Workbook = file; Worksheet = sheet inside the file.

100

Rows are labeled with

Numbers.

100

What formula adds all values from A1 to A5?

=SUM(A1:A5)

100

What formula finds the smallest number in C1–C5?

=MIN(C1:C5)

100

What is conditional formatting used for?

To automatically change cell appearance based on rules.

200

What do we call the intersection of a row and a column?

ACell.

200

Columns are labeled with

Letters.

200

What formula calculates the average of cells B1–B10?

=AVERAGE(B1:B10)

200

What formula finds the largest number in D1–D10?

=MAX(D1:D10)

200

Give an example of a rule you can apply with conditional formatting.

Highlight cells greater than 50, or Any Rule.

300

What file extension does Excel usually use?

.xlsx (or .xls for older versions).

300

What is the address of the cell in Row 3, Column B?

B3.

300

If A1=5 and A2=15, what does =SUM(A1:A2) return?

20

300

Write an IF formula that shows “Pass” if A1 ≥ 50, otherwise “Fail.”

=IF(A1>=50,"Pass","Fail")

300

How do you highlight all cells in Column B that are greater than 50?

Select Column B → Conditional Formatting → Highlight Cell Rules → Greater Than → type 50.

400

Which symbol must every formula start with?

The equals sign (=).

400

How do you quickly select an entire row?

Click the row number on the left.

400

What does =AVERAGE(10,20,30) return?

20

400

What will =MIN(7,12,4,9) return?

4

400

Can conditional formatting change text color, cell color, or both?

Both.

500

Name 3 types of data you can enter into an Excel cell.

Text, numbers, dates (also formulas).

500

What is the first cell in an Excel worksheet?

A1.

500

How are SUM and AVERAGE different?

SUM = adds all numbers; AVERAGE = adds all numbers then divides by count.

500

What will =IF(AVERAGE(A1:A5)>60,"Good","Needs Work") return if the average is 55?

“Needs Work”

500

Apply conditional formatting so that cells below 40 turn red, and cells 40 and above turn green.

Use two rules:

  • Rule 1: Format cells <40 → red fill.

  • Rule 2: Format cells >=40 → green fill.

M
e
n
u