Complete the formula to sum the values in cells A1 to A5.
=SUM([1])The correct range syntax in Google Sheets and Excel is A1:A5 to sum all cells from A1 to A5.
Complete the formula to get the current date in Google Sheets.
= [1] ()The TODAY() function returns the current date without the time.
Fix the error in the formula to count cells with values greater than 10 in range B1:B10.
=COUNTIF(B1:B10, [1])The criteria in COUNTIF must be a string with the comparison operator before the number, like ">10".
Fill both blanks to create a formula that returns the average of values in C1:C10, ignoring empty cells.
= [1] ([2])
The AVERAGE(C1:C10) function calculates the average of the range, ignoring empty cells automatically.
Fill all three blanks to create a formula that returns a dictionary (named range) of words and their lengths for words longer than 3 characters in A1:A5.
=[1]: [2] for word in [3] if len(word) > 3}
This formula is a conceptual example of creating a dictionary mapping words to their lengths for words longer than 3 characters in the range A1:A5.