Complete the formula to sum the range A1:A5 using an array formula.
=ARRAYFORMULA(SUM([1]))The range A1:A5 correctly specifies the cells to sum inside the ARRAYFORMULA. This allows the formula to process all values at once.
Complete the formula to multiply each value in B1:B3 by 2 using ARRAYFORMULA.
=ARRAYFORMULA([1] * 2)
The range B1:B3 allows ARRAYFORMULA to multiply each cell in the range by 2 at once.
Fix the error in this formula that tries to add 5 to each value in C1:C4: =ARRAYFORMULA(C1:C4 {{BLANK_1}} 5)
=ARRAYFORMULA(C1:C4 [1] 5)
The plus sign + correctly adds 5 to each value in the range C1:C4 using ARRAYFORMULA.
Fill both blanks to create a formula that returns TRUE for values in D1:D5 greater than 10 using ARRAYFORMULA.
=ARRAYFORMULA(D1:D5 [1] [2])
The operator > checks if values are greater than the number 10. Using these inside ARRAYFORMULA processes the whole range at once.
Fill all three blanks to create a formula that returns the length of each word in E1:E4 if the length is greater than 3 using ARRAYFORMULA and IF.
=ARRAYFORMULA(IF(LEN(E1:E4) [1] [2], LEN([3]), ""))
The formula checks if the length of each word in E1:E4 is greater than 3. If true, it returns the length; otherwise, it returns an empty string. This works for all cells at once using ARRAYFORMULA.