Complete the formula to sum the values in column B.
=SUM([1])The SUM function adds all numbers in the range B2:B10, which contains the values to summarize.
Complete the formula to count how many entries are in column A.
=COUNTA([1])COUNTA counts all non-empty cells in the range A2:A20, which holds the entries.
Fix the error in the formula to calculate average sales in column C.
=AVERAGE([1])The correct range C2:C15 selects the cells with sales data. Other options are invalid ranges.
Fill both blanks to create a filter that shows only sales greater than 100.
=FILTER(C2:C20, C2:C20 [1] [2])
The FILTER function uses the condition C2:C20 > 100 to show sales above 100.
Fill all three blanks to create a dictionary of product names and their sales above 200.
=[1]: [2] for [3] in A2:A30 if B2:B30 > 200}
This comprehension creates a dictionary with product names as keys and sales as values, filtering sales above 200.