=SUM(A1:A5*2) when entered as an array formula (Ctrl+Shift+Enter)?The formula multiplies each number in A1:A5 by 2, resulting in {2,4,6,8,10}. Then SUM adds them: 2+4+6+8+10 = 30.
Option C uses IF to convert TRUE/FALSE to 1/0, then sums them. This works as an array formula to count values greater than 5.
Option C sums TRUE/FALSE directly, but Excel treats TRUE as 1 only in array context, so it needs to be entered as an array formula.
Option C is not an array formula but a normal function.
Option C is invalid syntax in Excel.
=SUM((C1:C4-D1:D4)^2)?Differences: (10-5)=5, (20-15)=5, (30-25)=5, (40-35)=5
Squares: 25, 25, 25, 25
Sum: 25+25+25+25=100
Option A first extracts unique names, then sorts them alphabetically.
Option A sorts first then extracts unique, which also works but is less efficient.
Option A filters only names that appear once, excluding duplicates entirely.
Option A sorts all names including duplicates.
=SUM(F1:F5*1)?Excel coerces "20" to 20, TRUE to 1, FALSE to 0, "text" to 0 in math operations.
So values become: 10, 20, 1, 0, 0
Sum: 10+20+1+0+0 = 31