Complete the formula to select data for the X-axis in a scatter plot.
=Sheet1!A[1]:A10The X-axis data range starts from row 1 in column A, so the correct reference is A1:A10.
Complete the formula to select data for the Y-axis in a scatter plot.
=Sheet1!B[1]:B10The Y-axis data range starts from row 1 in column B, so the correct reference is B1:B10.
Fix the error in the chart data range formula for a scatter plot.
=SHEET1!A[1]:B10Sheet names are case-insensitive but usually written as 'Sheet1'. The range should start at row 1 to include all data.
Fill both blanks to create a scatter plot data range from columns A and B, rows 1 to 10.
=Sheet1![1]1:[2]10
The scatter plot uses columns A and B for X and Y data, so the range is A1:B10.
Fill all three blanks to create a formula that filters data points where X values in column A are greater than 5 for a scatter plot.
=FILTER(Sheet1!A[1]:B10, Sheet1!A[2]:A10 [3] 5)
The FILTER function selects rows from A1:B10 where values in A6:A10 are greater than 5. The blanks fill the start rows and the comparison operator.