Complete the formula to correctly reference cell A1.
=SUM([1])The correct cell reference format is the column letter followed by the row number, like A1.
Complete the formula to fix the #REF! error caused by a deleted cell reference.
=SUM(B1:[1])The range must be valid and continuous. B10 is a valid cell reference to complete the range.
Fix the error in the formula by completing the missing reference.
=VLOOKUP(A2, [1], 2, FALSE)
The table array must include the sheet name and the correct columns. Sheet1!A:B correctly references columns A and B on Sheet1.
Fill both blanks to create a formula that sums values in column C only if column B equals "Yes".
=SUMIF([1], [2], C:C)
The range to check is column B (B:B), and the criteria is the text "Yes".
Fill all three blanks to create a formula that counts cells in column D that are greater than 100.
=COUNTIF([1], [2] & [3])
The range is column D (D:D), the operator is ">", and the number is 100. The operator and number are combined as a string.