Formulas 101
Range Master
Logical Thinking (The IF Function)
Mystery Formulas
Charting Data
100

This function adds up all the numbers in a range.

What is SUM?

100

In the formula =SUM(A1:A10), the symbol : represents this.

What is a Range (or "Through")?

100

The IF function has this many parts (arguments) separated by commas.

What is 3? (Logical test, Value if true, Value if false).

100

If A1=5, A2=10, and A3=15, what is =SUM(A1:A3)?

What is 30?

100

When creating a chart, the SUM of categories is often visualized as slices in this circular chart type.

What is a Pie Chart?

200

This function helps you find the single highest grade in a list.

What is MAX?

200

How would you write a formula to find the average of cells B2, B3, B4, and B5?

What is =AVERAGE(B2:B5)?

200

In an IF function, text results (like "Pass") must be enclosed in these.

What are Quotation Marks (" ")?

200

If B1=100 and B2=0, what is =MAX(B1:B2)?

What is 100?

200

To show the AVERAGE rainfall of 12 different months side-by-side, this chart type is best.

What is a Column (or Bar) Chart?

300

If you want to find the lowest temperature recorded in a month, you use this function.

What is MIN?

300

If a range has the numbers 10, 20, and 60, what is the result of =AVERAGE?

What is 30?

300

What does =IF(10 > 5, "Yes", "No") return?

What is Yes?

300

Identify the error in this formula: =IF(A1>50, Pass, Fail)

What is Missing Quotation Marks?

300

This horizontal line on a chart usually represents the categories or time.

What is the X-Axis?

400

This function calculates the arithmetic mean of a range.

What is AVERAGE?

400

To find the difference between the highest and lowest numbers in range A1:A10, you would subtract these two functions.

What is =MAX(A1:A10) - MIN(A1:A10)?

400

Write an IF statement that returns "Pass" if cell A1 is 60 or higher, and "Fail" if it is lower.

What is =IF(A1>=60, "Pass", "Fail")?

400

What is the result of =MIN(10, 20, 5, 40)?

What is 5?

400

If you want to show the MIN and MAX stock prices over a year, you would likely use this "point-to-point" chart.

What is a Line Chart?

500

Every function in Excel must start with this mathematical symbol.

What is the Equal Sign (=)?

500

This error message appears if you try to use =AVERAGE on a range that contains only text or is empty.

What is #DIV/0!?

500

This is the term for putting one IF function inside another to check for multiple conditions.

What is a Nested IF?

500

If =AVERAGE(A1:A4) is 10, what is the value of =SUM(A1:A4)?

What is 40? (4 cells multiplied by an average of 10).

500

This chart element tells the viewer what each color or bar represents.

What is the Legend?