Complete the code to add a comment in a Google Sheets formula.
=SUM(A1:A10) [1] This adds the valuesIn Google Sheets, a comment in a formula is added using a single quote '. Anything after the quote is ignored.
Complete the formula to add a comment after the calculation.
=AVERAGE(B1:B5) [1] Calculate average scoreThe single quote ' is used to add comments in Google Sheets formulas. Anything after it is ignored.
Fix the error in the formula by adding the correct comment symbol.
=MAX(C1:C10) [1] Find max valueThe correct comment symbol in Google Sheets formulas is the single quote '. Other symbols cause errors or are ignored differently.
Fill both blanks to create a formula that sums and adds a comment.
=SUM([1]) [2] Total sales
The range A1:A10 is used inside SUM, and the single quote ' adds a comment after the formula.
Fill all three blanks to create a formula that averages a range and adds a comment.
=AVERAGE([1])[2] Calculate average of [3]
The range B2:B15 is averaged, the comment starts with a single quote ', and the word sales describes the data.