Complete the code to create an extract for better performance in Tableau.
CREATE EXTRACT [1] FROM data_sourceIn Tableau, creating an extract from a table improves performance by reducing live queries.
Complete the Tableau calculation to limit data for faster dashboard loading.
IF [Order Date] [1] DATE("2023-01-01") THEN [Sales] ELSE 0 END
Using >= filters data to only include orders from 2023 onward, improving performance.
Fix the error in the Tableau LOD expression to calculate average sales per customer.
{ FIXED [Customer ID] : AVG([1]) }The correct syntax uses the field name with square brackets: [Sales].
Fill both blanks to optimize Tableau dashboard performance by reducing data and aggregation.
SUM(IF [Region] [1] "West" THEN [Sales] ELSE 0 END) / COUNTD([2])
Filtering region with = 'West' limits data. Counting by [Customer ID] aggregates correctly.
Fill all three blanks to create a calculated field that improves performance by filtering and aggregating sales.
SUM(IF [Category] [1] "Furniture" AND [Sales] [2] 1000 THEN [3] ELSE 0 END)
Filter category with = 'Furniture', sales greater than 1000, and sum the [Sales] field.