0
0
Excelspreadsheet~10 mins

Co-authoring in real time in Excel - Interactive Code Practice

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

Complete the formula to sum values in cells A1 to A5.

Excel
=SUM(A1[1]A5)
Drag options to blanks, or click blank then click option'
A,
B-
C;
D:
Attempts:
3 left
💡 Hint
Common Mistakes
Using a comma instead of a colon to specify a range.
Using a semicolon which is not valid for ranges.
Using a dash which is not recognized as a range operator.
2fill in blank
medium

Complete the formula to calculate the average of cells B1 to B10.

Excel
=AVERAGE(B1[1]B10)
Drag options to blanks, or click blank then click option'
A:
B;
C,
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using a comma which separates arguments, not ranges.
Using a semicolon which is not valid in this context.
Using a dash which is not recognized as a range.
3fill in blank
hard

Fix the error in the formula to count non-empty cells in C1 to C20.

Excel
=COUNTA(C1[1]C20)
Drag options to blanks, or click blank then click option'
A:
B,
C;
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using a comma which separates arguments, not ranges.
Using a semicolon which is invalid here.
Using a dash which causes a formula error.
4fill in blank
hard

Complete the code to create a formula that sums cells D1 to D5 and multiplies by 2.

Excel
=SUM(D1:D5)[1]2
Drag options to blanks, or click blank then click option'
A:
B*
C+
D-
Attempts:
3 left
💡 Hint
Common Mistakes
Using '+' instead of '*' for multiplication.
Using ',' instead of ':' for range.
Using '-' which subtracts instead of multiplies.
5fill in blank
hard

Fill both blanks to create a formula that counts cells E1 to E10 with values greater than 5.

Excel
=COUNTIF(E1:E10, ">"[1][2])
Drag options to blanks, or click blank then click option'
A:
B&
C5
D+
Attempts:
3 left
💡 Hint
Common Mistakes
Using '+' instead of '&' to join strings.
Using ',' instead of ':' for range.
Leaving out the number 5 in the condition.