Complete the code to create a scatter plot visual by selecting the correct field for the X-axis.
ScatterPlot.XAxis = [1]The X-axis in a scatter plot should be a numeric field like SalesAmount to show meaningful distribution.
Complete the code to set the Y-axis field for the scatter plot.
ScatterPlot.YAxis = [1]The Y-axis should be a numeric field like Profit to compare against the X-axis values.
Fix the error in the DAX measure that calculates the average sales for the scatter plot size.
AverageSales = AVERAGE([1])The AVERAGE function requires a numeric column like SalesAmount to calculate the average correctly.
Fill both blanks to create a scatter plot with color representing category and size representing average sales.
ScatterPlot.Color = [1] ScatterPlot.Size = [2]
Color should be a category like ProductCategory, and size should be a measure like AverageSales to show differences clearly.
Fill all three blanks to write a DAX measure that calculates total profit for a selected region and product category.
TotalProfit = CALCULATE(SUM([1]), FILTER(ALL('Sales'), 'Sales'[Region] = [2] && 'Sales'[ProductCategory] = [3]))
The measure sums Profit filtered by region "West" and category "Electronics".