Complete the code to add a reference line at the average sales value.
Add Reference Line: Value = [1](SUM([Sales]))The average sales value is calculated using the AVG aggregation function.
Complete the code to set the reference line label to show the exact value.
Reference Line Label: [1]Choosing Value displays the exact value of the reference line on the chart.
Fix the error in the calculation to add a reference line at the median profit.
Reference Line Calculation: [1]([Profit])The correct function to calculate the median is MEDIAN. 'MEAN' is not a valid Tableau function.
Fill both blanks to add a reference line at the maximum sales and set the line style to dashed.
Add Reference Line: Value = [1]([Sales]), Line Style = [2]
The maximum sales value is calculated with MAX. The dashed line style is set by Dashed.
Fill all three blanks to add a reference line at the average profit, set the label to custom text, and set the color to red.
Add Reference Line: Value = [1]([Profit]), Label = [2], Color = [3]
Use AVG for average profit, Custom to set a custom label, and Red to color the line red.