Complete the formula to sum values in cells A1 to A5.
=SUM(A1[1]A5)The colon ':' is used to specify a range of cells in Excel formulas.
Complete the formula to calculate the average of cells B1 to B10.
=AVERAGE(B1[1]B10)The colon ':' defines the range of cells from B1 to B10 for the AVERAGE function.
Fix the error in the formula to count non-empty cells in C1 to C20.
=COUNTA(C1[1]C20)The colon ':' is needed to specify the range from C1 to C20 in the COUNTA function.
Complete the code to create a formula that sums cells D1 to D5 and multiplies by 2.
=SUM(D1:D5)[1]2
The colon ':' defines the range D1 to D5 for SUM, and the asterisk '*' multiplies the result by 2.
Fill both blanks to create a formula that counts cells E1 to E10 with values greater than 5.
=COUNTIF(E1:E10, ">"[1][2])
The colon ':' defines the range E1 to E10. The ampersand '&' joins the '>' operator with the number 5 to form the condition ">5".