Complete the formula to calculate the total price by multiplying quantity in A2 by price in B2.
=A2[1]B2The multiplication operator * calculates total price by multiplying quantity and price.
Complete the formula to calculate the average of numbers in 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 calculate the percentage of B2 over A2.
=[1]/A2*100
The formula divides B2 by A2 and multiplies by 100 to get the percentage.
Fill both blanks to create a formula that sums values in B2 to B10 only if corresponding A2 to A10 cells equal "Yes".
=SUMIF([1], [2], B2:B10)
The SUMIF function sums values in B2:B10 where cells in A2:A10 equal "Yes".
Fill all three blanks to create a formula that counts how many cells in C2:C20 are greater than 50.
=COUNTIF([1], "[2][3]")
The COUNTIF function counts cells in C2:C20 where values are greater than 50. The condition is written as a string ">50".