Complete the formula to sum values in cells A1 to A5.
=SUM([1])The correct way to sum a range in Excel is to use a colon between the start and end cells, like A1:A5.
Complete the formula to count how many cells in B1 to B10 contain numbers.
=COUNT([1])The COUNT function counts numeric values in a range specified with a colon, like B1:B10.
Fix the error in this formula to find the average of cells C1 to C8.
=AVERAGE([1])The correct range syntax uses a colon ':' between the first and last cell, like C1:C8.
Fill both blanks to create a formula that counts cells in D1 to D12 that are greater than 5.
=COUNTIF([1], [2])
COUNTIF needs a range and a condition. The range is D1:D12 and the condition is ">5" to count values greater than 5.
Fill all three blanks to create a formula that sums values in E1 to E10 only if they are less than 20.
=SUMIF([1], [2], [3])
SUMIF needs a range to check (E1:E10), a condition ("<20"), and the sum range (E1:E10) to add matching values.