0
0
Excelspreadsheet~20 mins

Array formulas basics in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Array Formula Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Output of an Array SUM Formula
Given the range A1:A5 contains the numbers 1, 2, 3, 4, 5 respectively, what is the output of the formula =SUM(A1:A5*2) when entered as an array formula (Ctrl+Shift+Enter)?
A55
B30
C15
D10
Attempts:
2 left
💡 Hint
Remember that multiplying a range by 2 doubles each element before summing.
Function Choice
intermediate
2:00remaining
Choosing the Correct Array Formula Function
You want to count how many numbers in the range B1:B10 are greater than 5 using an array formula. Which formula will give the correct count?
A=SUM(B1:B10>5)
B=ARRAYFORMULA(COUNT(B1:B10>5))
C=SUM(IF(B1:B10>5,1,0))
D=COUNTIF(B1:B10, ">5")
Attempts:
2 left
💡 Hint
Think about how to convert TRUE/FALSE to numbers for summing.
📊 Formula Result
advanced
2:00remaining
Result of an Array Formula with Multiple Operations
If cells C1:C4 contain {10, 20, 30, 40} and D1:D4 contain {5, 15, 25, 35}, what is the result of the array formula =SUM((C1:C4-D1:D4)^2)?
A100
B70
C60
D50
Attempts:
2 left
💡 Hint
Calculate each difference, square it, then sum all.
🎯 Scenario
advanced
2:00remaining
Using Array Formulas to Extract Unique Values
You have a list of names in E1:E10 with some duplicates. Which array formula will return the unique names sorted alphabetically in a spill range (Excel 365 or later)?
A=SORT(UNIQUE(E1:E10))
B=UNIQUE(SORT(E1:E10))
C=FILTER(E1:E10, COUNTIF(E1:E10, E1:E10)=1)
D=SORT(FILTER(E1:E10, E1:E10<>""))
Attempts:
2 left
💡 Hint
Think about first removing duplicates, then sorting.
🧠 Conceptual
expert
2:00remaining
Understanding Array Formula Behavior with Mixed Data Types
Given the range F1:F5 contains {10, "20", TRUE, FALSE, "text"}, what is the result of the array formula =SUM(F1:F5*1)?
AError
B10
C11
D31
Attempts:
2 left
💡 Hint
Remember how Excel coerces text and logical values to numbers in math operations.