Challenge - 5 Problems
HLOOKUP Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this HLOOKUP formula?
Given the table below in cells A1:D2:
What is the result of the formula
A1: "Item" B1: "Pen" C1: "Pencil" D1: "Eraser"
A2: 10 B2: 5 C2: 7 D2: 3
What is the result of the formula
=HLOOKUP("Pencil", A1:D2, 2, FALSE)?Attempts:
2 left
💡 Hint
HLOOKUP searches the first row for the lookup value and returns the value from the specified row number.
✗ Incorrect
The formula looks for "Pencil" in the first row (A1:D1). It finds it in C1, then returns the value from the second row in the same column, which is C2 = 7.
❓ Function Choice
intermediate2:00remaining
Which formula correctly finds the price of "Eraser" in the table?
Using the same table as before:
Which formula will correctly return the price of "Eraser"?
A1: "Item" B1: "Pen" C1: "Pencil" D1: "Eraser"
A2: 10 B2: 5 C2: 7 D2: 3
Which formula will correctly return the price of "Eraser"?
Attempts:
2 left
💡 Hint
Remember the row index number should point to the row with prices, and exact match is needed.
✗ Incorrect
Option C correctly looks for "Eraser" in the first row (A1:D1) and returns the value from the second row (row 2) with exact match (FALSE).
📊 Formula Result
advanced2:00remaining
What is the output of this HLOOKUP with approximate match?
Given this table in A1:E2:
What is the result of
A1: 50 B1: 60 C1: 70 D1: 80 E1: 90
A2: "F" B2: "D" C2: "C" D2: "B" E2: "A"
What is the result of
=HLOOKUP(75, A1:E2, 2, TRUE)?Attempts:
2 left
💡 Hint
With approximate match TRUE, HLOOKUP finds the largest value less than or equal to the lookup value.
✗ Incorrect
75 is between 70 and 80. HLOOKUP with TRUE returns the value for 70, which is "C".
🎯 Scenario
advanced2:00remaining
You want to find a value but the lookup row is not the first row. What should you do?
You have a table where the first row contains prices and the second row contains product names:
You want to find the price of "Pencil" using HLOOKUP. Which approach will work?
A1: 5 B1: 7 C1: 3
A2: "Pen" B2: "Pencil" C2: "Eraser"
You want to find the price of "Pencil" using HLOOKUP. Which approach will work?
Attempts:
2 left
💡 Hint
HLOOKUP always searches the first row of the range for the lookup value.
✗ Incorrect
Since product names are in the second row, HLOOKUP won't find "Pencil" in the first row. Using MATCH to find the column of "Pencil" in row 2, then INDEX to get the price from row 1 works correctly.
📊 Formula Result
expert2:00remaining
What error does this formula produce?
Given the table:
What error does the formula
A1: "Name" B1: "Age" C1: "City"
A2: "Alice" B2: 30 C2: "NY"
What error does the formula
=HLOOKUP("Bob", A1:C2, 2, FALSE) produce?Attempts:
2 left
💡 Hint
When HLOOKUP cannot find an exact match with FALSE, it returns a specific error.
✗ Incorrect
Since "Bob" is not found in the first row, and exact match is requested, HLOOKUP returns #N/A error.