Complete the formula to multiply each value in range A1:A5 by 2 using an array formula.
=A1:A5[1]2
The asterisk (*) is used to multiply each element in the range by 2 in an array formula.
Complete the formula to sum the product of ranges A1:A3 and B1:B3 using an array formula.
=SUM(A1:A3[1]B1:B3)The multiplication operator (*) multiplies corresponding elements of the two ranges before summing them.
Fix the error in the array formula that calculates the square of each value in A1:A4.
=A1:A4[1]2
In Excel, the caret (^) is used for exponentiation, so raising each element to the power of 2 uses ^2.
Fill both blanks to create an array formula that returns TRUE for values in A1:A5 greater than 10.
=(A1:A5 [1] 10)
The greater than operator (>) compares each value to 10, and the formula returns TRUE for those greater.
Fill all three blanks to create an array formula that sums values in A1:A5 only if they are greater than 5.
=SUM(IF(A1:A5 [1] 5, A1:A5, [2]))
The IF checks if values are greater than 5 (using >), returns the value if true, else 0 to sum only those greater than 5.