Complete the code to apply a formula to the entire column A using ARRAYFORMULA.
=ARRAYFORMULA([1] + 1)
The correct way to apply a formula to the whole column A is to use the range A1:A inside ARRAYFORMULA.
Complete the code to multiply each value in column B by 2 using ARRAYFORMULA.
=ARRAYFORMULA([1] * 2)
To multiply each value in column B, you must use the range B1:B inside ARRAYFORMULA.
Fix the error in the formula to sum columns A and B for each row using ARRAYFORMULA.
=ARRAYFORMULA([1] + B1:B)Both ranges must cover the same rows. Use A1:A to match B1:B.
Fill both blanks to create an ARRAYFORMULA that adds 10 to each value in column C and multiplies by 3.
=ARRAYFORMULA(([1] + [2]) * 3)
Use C1:C to refer to the whole column C and add 10 to each value.
Fill all three blanks to create an ARRAYFORMULA that filters values in column D greater than 5 and multiplies them by 2.
=ARRAYFORMULA(IF([1] > [2], [3] * 2, ""))
The formula checks if values in D1:D are greater than 5, then multiplies those values by 2.