Complete the code to create a basic bar chart in Tableau.
Drag the [1] field to Columns and the Sales field to Rows.
Category is commonly used on Columns to create bar charts showing sales by category.
Complete the code to filter data for the year 2023 in Tableau.
Drag the [1] field to Filters and select 2023.
Order Date is the date field used to filter data by year.
Fix the error in the calculated field to compute profit ratio.
Profit Ratio = SUM([Profit]) / SUM([1])Profit ratio is profit divided by sales, so SUM([Sales]) is correct.
Fill both blanks to create a calculated field that shows sales growth percentage.
Sales Growth % = (SUM([Sales]) - SUM([1])) / SUM([2]) * 100
Sales growth compares current sales to previous year sales, so both blanks use Previous Year Sales.
Fill the blanks to create a Level of Detail (LOD) expression that calculates average sales per customer.
{ FIXED [1] : AVG([2]) }The LOD fixes on Customer ID to calculate average Sales per customer: { FIXED [Customer ID] : AVG([Sales]) }.