0
0
Google Sheetsspreadsheet~10 mins

ARRAYFORMULA function in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to apply a formula to the entire column A using ARRAYFORMULA.

Google Sheets
=ARRAYFORMULA([1] + 1)
Drag options to blanks, or click blank then click option'
AA1:A
BA1
CA
D1
Attempts:
3 left
💡 Hint
Common Mistakes
Using a single cell reference instead of a range.
Using just the column letter without row numbers.
2fill in blank
medium

Complete the code to multiply each value in column B by 2 using ARRAYFORMULA.

Google Sheets
=ARRAYFORMULA([1] * 2)
Drag options to blanks, or click blank then click option'
A2
BB1
CB
DB1:B
Attempts:
3 left
💡 Hint
Common Mistakes
Using just the column letter without row numbers.
Using a single cell reference.
3fill in blank
hard

Fix the error in the formula to sum columns A and B for each row using ARRAYFORMULA.

Google Sheets
=ARRAYFORMULA([1] + B1:B)
Drag options to blanks, or click blank then click option'
AA1:A
BA1
CA
D1
Attempts:
3 left
💡 Hint
Common Mistakes
Using a single cell reference for one column and a range for the other.
Using just the column letter without row numbers.
4fill in blank
hard

Fill both blanks to create an ARRAYFORMULA that adds 10 to each value in column C and multiplies by 3.

Google Sheets
=ARRAYFORMULA(([1] + [2]) * 3)
Drag options to blanks, or click blank then click option'
AC1:C
B10
CC
D3
Attempts:
3 left
💡 Hint
Common Mistakes
Using just the column letter without row numbers.
Using the wrong number in the addition.
5fill in blank
hard

Fill all three blanks to create an ARRAYFORMULA that filters values in column D greater than 5 and multiplies them by 2.

Google Sheets
=ARRAYFORMULA(IF([1] > [2], [3] * 2, ""))
Drag options to blanks, or click blank then click option'
AD1:D
B5
D2
Attempts:
3 left
💡 Hint
Common Mistakes
Using just the column letter without row numbers.
Mixing up the range for multiplication.