Complete the formula to sum the values in cells A1 to A5.
=SUM([1])The correct way to specify a range in Excel is using a colon (:), so A1:A5 sums all cells from A1 to A5.
Complete the formula to calculate the average of cells B2 to B6.
=AVERAGE([1])Excel uses a colon (:) to specify a range of cells, so B2:B6 correctly selects all cells from B2 to B6 for averaging.
Fix the error in the formula to multiply cell C1 by 10.
=C1[1]10
To multiply in Excel, use the asterisk (*) operator. So =C1*10 multiplies the value in C1 by 10.
Fill both blanks to create a formula that counts how many cells in D1 to D10 are greater than 5.
=COUNTIF([1], [2])
The COUNTIF function needs a range and a condition as a text string. So D1:D10 is the range, and ">5" is the condition to count cells greater than 5.
Fill all three blanks to create a formula that sums values in E1 to E5 only if they are less than 20.
=SUMIF([1], [2], [3])
The SUMIF function needs the range to check (E1:E5), the condition as a string ("<20"), and the range to sum (also E1:E5).