Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the formula to multiply the value in cell A1 by 10.
Google Sheets
=A1[1]10
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using + instead of * will add instead of multiply.
Using / will divide the value.
Using - will subtract the value.
✗ Incorrect
The asterisk (*) is used to multiply values in Google Sheets formulas.
2fill in blank
mediumComplete the formula to calculate the sum of values in cells A1 to A5.
Google Sheets
=SUM(A1[1]A5) Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a comma (,) separates arguments, not ranges.
Using a semicolon (;) is not valid for ranges.
Using a dash (-) is subtraction, not range.
✗ Incorrect
The colon (:) is used to specify a range of cells in Google Sheets.
3fill in blank
hardFix the error in the formula to multiply cell A1 by the value in B1.
Google Sheets
=A1[1]B1 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using + adds values instead of multiplying.
Using & joins text strings, causing errors with numbers.
Using - subtracts values.
✗ Incorrect
The * operator multiplies the values in A1 and B1. Using & concatenates text, which is incorrect here.
4fill in blank
hardComplete the code to create a formula that multiplies the sum of A1 to A3 by the value in B1.
Google Sheets
=[1](A1:A3)*B1 Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using + instead of : to define the range.
Using - instead of : causes errors.
Not using SUM will not add the cells.
✗ Incorrect
The colon (:) defines the range from A1 to A3.
5fill in blank
hardFill both blanks to create a formula that multiplies the average of B1 to B4 by the sum of A1 to A3.
Google Sheets
=AVERAGE([1]:[2])*SUM(A1:A3)
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using commas (,) instead of colon (:) to specify range.
Using incorrect cell references.
Not using SUM for the second part.
✗ Incorrect
Then it multiplies by the sum of A1 to A3.