0
0
Excelspreadsheet~20 mins

Why lookups connect related data in Excel - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Lookup Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this VLOOKUP formula?
You have a table where column A has product IDs and column B has product names. The formula =VLOOKUP(102, A1:B5, 2, FALSE) is entered in a cell. What will it return if the table is:

A1: 101, B1: Apple
A2: 102, B2: Banana
A3: 103, B3: Cherry
A4: 104, B4: Date
A5: 105, B5: Elderberry
AApple
BBanana
CCherry
D#N/A
Attempts:
2 left
💡 Hint
Look for the row where the first column matches 102 and return the value from the second column.
Function Choice
intermediate
2:00remaining
Which function correctly connects related data from two tables?
You have two tables: one with employee IDs and names, another with employee IDs and their departments. You want to find the department for a given employee ID. Which function is best to use?
ASUM()
BIF()
CVLOOKUP()
DCOUNT()
Attempts:
2 left
💡 Hint
You need to find a matching value in one table and return related data from another.
🎯 Scenario
advanced
2:00remaining
How to avoid errors when lookup value is missing?
You use =VLOOKUP(200, A1:B5, 2, FALSE) but 200 is not in the first column. What will happen and how can you avoid showing an error?
AIt returns a blank cell; use ISBLANK() to check.
BIt returns 0; no action needed.
CIt returns the last value in the column; use TRIM() to fix.
DIt returns #N/A error; use IFERROR() to show a friendly message.
Attempts:
2 left
💡 Hint
Think about what happens when VLOOKUP can't find the value and how to handle errors gracefully.
data_analysis
advanced
2:00remaining
What is the result of this INDEX-MATCH combination?
Given a table with columns A (ID), B (Name), and C (Score), what does this formula return?

=INDEX(B1:B5, MATCH(88, C1:C5, 0))

Assuming C1:C5 contains scores: 75, 88, 92, 88, 70 and B1:B5 contains names: Anna, Bob, Cara, Dan, Eva.
ABob
BDan
CCara
DAnna
Attempts:
2 left
💡 Hint
MATCH finds the first exact match; INDEX returns the name at that position.
🧠 Conceptual
expert
2:00remaining
Why are lookup functions essential for connecting related data?
Which statement best explains why lookup functions like VLOOKUP or INDEX-MATCH are important in spreadsheets?
AThey allow you to find and combine data from different tables based on a common key, making data analysis easier.
BThey automatically sort data alphabetically to improve readability.
CThey create charts and graphs from raw data without formulas.
DThey delete duplicate rows to clean up data.
Attempts:
2 left
💡 Hint
Think about how data from different lists or tables can be connected.