0
0
Excelspreadsheet~20 mins

Reference errors and troubleshooting in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Reference Error Master
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 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?
A2
B#REF!
C8
D10
Attempts:
2 left
💡 Hint
Deleting rows inside a range adjusts the range automatically.
📊 Formula Result
intermediate
2: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?
A5
B#REF!
C#VALUE!
D0
Attempts:
2 left
💡 Hint
Empty cells are treated as zero in arithmetic operations.
Function Choice
advanced
2: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?
A=SUM(A1:A10)
B=SUM(OFFSET(A1,0,0,10,1))
C=SUM(INDEX(A:A,1):INDEX(A:A,10))
D=SUM(INDIRECT("A1:A10"))
Attempts:
2 left
💡 Hint
Using INDEX with column references is more stable than direct ranges or INDIRECT.
🎯 Scenario
advanced
2: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?
ARe-enter formula as =Sheet2!B2 + Sheet3!C3
BChange formula to =Sheet2!B2 + Data!C3
CDelete the formula and retype it without sheet names
DUse INDIRECT("Sheet3!C3") in the formula
Attempts:
2 left
💡 Hint
Sheet names in formulas must match exactly after renaming.
data_analysis
expert
3: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?
AINDEX is referencing a row outside the range
BCells A1:A5 contain errors
CAddition operator is missing
DSUM range is invalid
Attempts:
2 left
💡 Hint
Check the row number used in INDEX relative to the range size.