Complete the formula to format the text using Excel formula.
=TEXT([1], "@")
Using the TEXT function with cell B1 formats the text from that cell. This is a simple way to refer to the cell you want to format.
Complete the formula to calculate the total price by multiplying quantity in A2 by price in B2.
=A2 [1] B2The multiplication operator (*) is used to calculate total price by multiplying quantity and price.
Fix the error in the formula to sum values from A1 to A5.
=SUM(A1[1]A5)The colon (:) is used in Excel to specify a range of cells, so SUM(A1:A5) adds all values from A1 to A5.
Fill the blank to create a conditional formula that returns "Pass" if score in A1 is 50 or more, otherwise "Fail".
=IF(A1 [1] 50, "Pass", "Fail")
The operator >= means 'greater than or equal to', which fits the condition for passing.
Fill all three blanks to create a formula that counts how many cells in range A1:A10 are greater than 5.
=COUNTIF(A1:A10, [1][2][3])
The COUNTIF function needs the condition as a text string. So we use ">5" inside quotes to count cells greater than 5.