Complete the formula to add values in cells A1 and B1.
=A1 [1] B1The plus sign (+) adds the values in A1 and B1.
Complete the formula to calculate the average of cells A1 to A5.
=AVERAGE([1])The range A1:A5 selects all cells from A1 to A5 for averaging.
Fix the error in the formula to multiply cell A1 by 10.
=A1 [1] 10
The asterisk (*) is the correct operator for multiplication in Excel formulas.
Fill both blanks to create a formula that sums cells B1 to B5 and then divides by 5.
=[1]([2])/5
SUM(B1:B5) adds all values in B1 to B5. Dividing by 5 calculates the average manually.
Fill all three blanks to create a formula that counts how many cells in C1:C10 are greater than 50.
=COUNTIF([1], "[2][3]")
COUNTIF(C1:C10, ">50") counts cells in C1:C10 with values greater than 50.
