Complete the code to enter the number 100 into cell A1 using Excel formula syntax.
= [1]To enter the number 100 directly, just type =100 in the cell.
Complete the formula to add the values in cells A1 and B1.
=A1 [1] B1The plus sign + adds two numbers in Excel formulas.
Fix the error in the formula to multiply cell A2 by 5.
=A2 [1] 5
The asterisk * is the multiplication operator in Excel formulas.
Complete the code to create a formula that calculates the average of cells A1 to A5.
= [1] (A1:A5)The AVERAGE function calculates the average. The colon : specifies a range from A1 to A5.
Fill both blanks to create a formula that sums cells B1 to B3 and multiplies the result by 2.
=[1](B1:B3)[2]2
The SUM function adds the range B1 to B3 (using colon :). Then multiply * by 2.
