Challenge - 5 Problems
Reference Error 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 formula with a deleted reference?
You have a formula
=SUM(A1:A5) in cell B1. If rows 2 to 4 are deleted, what will be the new formula result assuming A1=2, A5=8?Attempts:
2 left
💡 Hint
Deleting rows inside a range adjusts the range automatically.
✗ Incorrect
When rows 2 to 4 are deleted, the range A1:A5 adjusts to A1:A2 (which is A1 and A5 shifted up). The sum is 2 + 8 = 10.
📊 Formula Result
intermediate2:00remaining
What error does this formula produce?
Given cell A1 contains 5, what error will the formula
=A1 + INDIRECT("B" & 10) produce if cell B10 is empty?Attempts:
2 left
💡 Hint
Empty cells are treated as zero in arithmetic operations.
✗ Incorrect
INDIRECT("B10") refers to cell B10 which is empty, treated as zero. So 5 + 0 = 5.
❓ Function Choice
advanced2:00remaining
Which formula avoids #REF! error when deleting rows?
You want to sum values in column A from row 1 to row 10, but rows might be deleted. Which formula will NOT cause a #REF! error if rows are deleted?
Attempts:
2 left
💡 Hint
Using INDEX with column references is more stable than direct ranges or INDIRECT.
✗ Incorrect
Using INDEX to define the range keeps the reference valid even if rows are deleted, avoiding #REF! errors.
🎯 Scenario
advanced2:00remaining
Troubleshoot #REF! error after moving a sheet
You have a formula
=Sheet2!B2 + Sheet3!C3 in Sheet1. After renaming Sheet3 to Data, the formula shows #REF! error. What is the best fix?Attempts:
2 left
💡 Hint
Sheet names in formulas must match exactly after renaming.
✗ Incorrect
Renaming Sheet3 to Data breaks the reference. Updating the formula to use the new sheet name fixes the #REF! error.
❓ data_analysis
expert3:00remaining
Identify the cause of #REF! in a complex formula
Given the formula
=SUM(A1:A5) + INDEX(B1:B5, 10), what causes the #REF! error?Attempts:
2 left
💡 Hint
Check the row number used in INDEX relative to the range size.
✗ Incorrect
INDEX(B1:B5, 10) tries to get the 10th item, but the range only has 5 rows, causing #REF! error.