Recall & Review
beginner
What does the
INDEX function do in Excel?The
INDEX function returns the value of a cell at the intersection of a specified row and column within a range or array.Click to reveal answer
beginner
Syntax of the
INDEX function?The syntax is
INDEX(array, row_num, [column_num]). <br> - array: range or array to look in <br> - row_num: row number to find <br> - column_num: optional column number to findClick to reveal answer
beginner
What happens if you omit
column_num in INDEX?If
column_num is omitted, INDEX returns the value from the specified row in the first column of the array.Click to reveal answer
intermediate
How can
INDEX help when combined with MATCH?INDEX can return a value from a table using a row and column number found by MATCH, enabling dynamic lookups.Click to reveal answer
beginner
Example: What does
=INDEX(A1:C3, 2, 3) return?It returns the value in the 2nd row and 3rd column of the range A1:C3.
Click to reveal answer
What does
INDEX(A1:B4, 3, 2) return?✗ Incorrect
INDEX returns the value at the specified row and column in the range.If
column_num is omitted in INDEX, which column is used?✗ Incorrect
Omitting
column_num defaults to the first column.Which function is commonly paired with
INDEX for dynamic lookups?✗ Incorrect
MATCH finds the position, INDEX returns the value.What type of value does
INDEX return?✗ Incorrect
INDEX returns the actual value stored in the cell.What will
=INDEX(A1:C3, 1, 1) return?✗ Incorrect
Row 1, column 1 corresponds to cell A1.
Explain how the
INDEX function works and its main parameters.Think about how you find a seat in a theater by row and seat number.
You got /4 concepts.
Describe a practical example where combining
INDEX and MATCH is useful.Imagine looking up a friend's phone number in a contact list by name.
You got /4 concepts.