Complete the code to add a comment in Tableau calculated field.
// [1] this calculationIn Tableau, comments in calculated fields start with //. Adding a descriptive comment helps others understand the calculation.
Complete the naming convention for a calculated field that sums sales.
[1]_SumUsing a clear and simple prefix like Sales followed by _Sum helps keep names consistent and understandable.
Fix the error in this Tableau calculated field comment syntax.
/* [1] This is a comment */Tableau supports block comments using /* to start and */ to end. The code already uses this syntax correctly, so the blank should be /*.
Fill both blanks to follow best practice for naming a calculated field for average profit.
[1]_[2]
Using Avg_Profit clearly indicates the calculation is an average of profit, following naming conventions.
Fill all three blanks to create a descriptive comment header for a Tableau dashboard.
/* [1]: [2] dashboard showing [3] */
This comment clearly describes the project and purpose of the dashboard: Project: Analysis dashboard showing monthly revenue.