Complete the code to create a calculated field that adds 10 to the Sales value.
SUM([Sales]) [1] 10
In Tableau, to add a number to a field, you use the plus sign +.
Complete the code to calculate the average of the Profit field.
[1]([Profit])The function AVG() calculates the average of a field in Tableau.
Fix the error in the calculated field to return 'High' if Sales is greater than 1000, otherwise 'Low'.
IF [Sales] [1] 1000 THEN 'High' ELSE 'Low' END
The correct operator to check if Sales is greater than 1000 is >.
Fill both blanks to create a calculated field that returns the profit ratio as a percentage.
([Profit] [1] [Sales]) [2] 100
To calculate profit ratio percentage, divide Profit by Sales, then multiply by 100.
Fill all three blanks to create a calculated field that categorizes Sales into 'Low', 'Medium', or 'High'.
IF [Sales] [1] 500 THEN 'Low' ELSEIF [Sales] [2] 1500 THEN 'Medium' ELSEIF [Sales] [3] 1500 THEN 'High' END
Use '<' to include less than 500 for Low, '<=' to include 1500 in Medium, and '>=' for High sales.