Complete the code to create a scatter plot by placing the correct field on the Columns shelf.
Drag the [1] field to the Columns shelf to start building a scatter plot.In a scatter plot, numeric fields like Sales are placed on the Columns shelf to represent one axis.
Complete the code to add the correct field to the Rows shelf for the scatter plot.
Drag the [1] field to the Rows shelf to complete the scatter plot axes.Scatter plots use numeric fields on both axes. Profit is a numeric measure suitable for the Rows shelf.
Fix the error in the calculation to create a calculated field for average sales.
AVG([1])The AVG() function expects a field name, not an aggregation. Use Sales directly inside AVG().
Fill both blanks to color the scatter plot points by category and size them by sales.
Drag the [1] field to Color and the [2] field to Size on the Marks card.
Color by Category groups points visually. Size by Sales shows magnitude differences.
Fill all three blanks to filter the scatter plot to show only sales greater than 1000 and profit less than 500, and to label points by product name.
Add a filter where [1] > 1000 and [2] < 500, then drag [3] to Label on the Marks card.
Filter by Sales and Profit to limit data points. Label points with Product Name for clarity.