Complete the code to select the data range for a line chart from cells A1 to B5.
Select the range [1] to create a line chart.The correct way to select a range in Excel is using a colon between the start and end cells, like A1:B5.
Complete the formula to calculate the average of values in cells B2 to B6 for the line chart data.
=AVERAGE([1])Excel uses a colon ':' to specify a range in formulas, so B2:B6 is correct.
Fix the error in the formula to sum values in cells C1 to C10 for the line chart.
=SUM([1])The correct range syntax in Excel formulas uses a colon ':', so C1:C10 is correct.
Fill both blanks to create a line chart data dictionary with months as keys and sales as values.
data = [1] for month, sales in zip(months, [2])
To create a dictionary with months as keys and sales as values, use {month: sales} and iterate over sales.
Fill all three blanks to filter sales data for values greater than 100 before plotting the line chart.
filtered = { [1]: [2] for [3] in sales if sales[[1]] > 100 }The dictionary comprehension uses month as key, value as value, and iterates over month in sales keys.