Complete the formula to calculate the average of numbers in cells A1 to A5.
=AVERAGE([1])The correct way to specify a range in Excel is with a colon (:). So A1:A5 means all cells from A1 through A5.
Complete the formula to calculate the average of cells B2, B3, and B4.
=AVERAGE([1])When listing individual cells, separate them with commas inside the AVERAGE function, like B2,B3,B4.
Fix the error in the formula to correctly calculate the average of cells C1 to C3.
=AVERAGE(C1[1]C3)The correct range separator in Excel formulas is a colon (:), so C1:C3 selects cells C1 through C3.
Fill the blank to calculate the average of cells D1 to D4 and ignore empty cells.
=AVERAGE([1])The correct way to specify the range is D1:D4. Empty cells are ignored automatically by AVERAGE.
Fill all three blanks to calculate the average of cells E1, E3, and E5.
=AVERAGE([1],[2],[3])
To average specific cells, list each cell separated by commas inside the AVERAGE function.