Complete the formula to reference cell A1 in Excel.
=[1]In Excel, to reference a cell, you use its column letter followed by its row number, like A1.
Complete the formula to sum cells from A1 to A5.
=SUM([1])Excel uses a colon ':' to specify a range of cells, like A1:A5.
Fix the error in this formula that references cell B2 on Sheet2.
=Sheet2[1]B2In Excel, to reference a cell on another sheet, use an exclamation mark '!' between the sheet name and cell.
Fill both blanks to create a formula that multiplies cell C3 by 10 and adds cell D4.
= [1] * 10 + [2]
The formula multiplies the value in C3 by 10, then adds the value in D4.
Fill all three blanks to create a formula that sums cells A1 to A5, then divides by the count of those cells.
=SUM([1])/COUNT([2]) + [3]
This formula calculates the average of cells A1 to A5 by summing them and dividing by their count, then adds 0.