Challenge - 5 Problems
OFFSET Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Calculate sum with OFFSET for dynamic range
Given the data in cells A1:A5 as {10, 20, 30, 40, 50}, what is the result of the formula
=SUM(OFFSET(A1, 1, 0, 3, 1))?Attempts:
2 left
💡 Hint
OFFSET starts from A1, moves down 1 row, selects 3 rows height.
✗ Incorrect
The OFFSET starts at A1, moves down 1 row to A2, then selects 3 rows: A2, A3, A4 which are 20, 30, 40. Their sum is 90.
❓ Function Choice
intermediate2:00remaining
Choose correct OFFSET formula for last 4 rows
You have values in A1:A10. Which formula correctly sums the last 4 values using OFFSET?
Attempts:
2 left
💡 Hint
OFFSET row offset + height must cover last 4 rows starting from A1.
✗ Incorrect
Starting at A1, moving down 6 rows reaches A7. Selecting 4 rows from A7 to A10 sums the last 4 values.
📊 Formula Result
advanced2:00remaining
Dynamic average with OFFSET and COUNTA
Given data in B1:B8 with 5 numbers and 3 empty cells, what is the result of
=AVERAGE(OFFSET(B1,0,0,COUNTA(B1:B8),1)) if the numbers are {5, 10, 15, 20, 25} and the rest empty?Attempts:
2 left
💡 Hint
COUNTA counts non-empty cells, OFFSET uses that count as height.
✗ Incorrect
COUNTA(B1:B8) counts 5 numbers. OFFSET selects B1:B5. Average of 5,10,15,20,25 is 15.
🎯 Scenario
advanced2:00remaining
Create a dynamic chart range using OFFSET
You want a chart to update automatically as you add data in column C starting at C2. Which OFFSET formula defines a dynamic range for the chart's data series?
Attempts:
2 left
💡 Hint
Start at C2, count all non-empty cells in column C except header.
✗ Incorrect
COUNTA(C:C) counts all non-empty cells including header in C1. Subtract 1 to exclude header. OFFSET starts at C2 with height = count - 1.
❓ data_analysis
expert2:00remaining
Analyze error caused by OFFSET with negative height
What error occurs when using
=SUM(OFFSET(A1,0,0,-3,1)) in Excel?Attempts:
2 left
💡 Hint
OFFSET height cannot be negative.
✗ Incorrect
OFFSET with negative height is invalid and causes a #REF! error because the range is invalid.