You have sales data by month. Which chart type best shows sales trends over time?
Think about how to show changes over time clearly.
A line chart connects points over time, making trends easy to see. Bar charts show amounts but don't connect points. Pie charts compare parts of a whole, not trends. Scatter plots show relationships, not time series.
Given a sales dataset with fields Region and SalesAmount, which Tableau LOD expression correctly calculates total sales per region regardless of filters?
Which LOD expression fixes the calculation at the region level ignoring filters?
The FIXED LOD expression calculates the sum of sales per region regardless of other filters. INCLUDE and EXCLUDE adjust the level of detail differently. SUM alone respects filters.
What is the main purpose of a context filter in Tableau?
Think about how filters can affect other filters.
Context filters create a subset of data that other filters then apply to. This improves performance and controls filter order. They do not delete data or change connections.
You have two tables: Customers and Orders. You want to see all customers, including those without orders. Which join type should you use in Tableau?
Which join keeps all customers even if they have no orders?
A left join with Customers as the left table keeps all customers and adds matching orders. Inner join excludes customers without orders. Right join and full outer join behave differently.
Review this Tableau calculated field:IF SUM([Sales]) > 1000 THEN 'High' ELSEIF SUM([Sales]) > 500 THEN 'Medium' ELSE 'Low' END
What error will this cause?
IF SUM([Sales]) > 1000 THEN 'High' ELSE IF SUM([Sales]) > 500 THEN 'Medium' ELSE 'Low' END
Check the correct syntax for multiple conditions in Tableau IF statements.
Tableau requires ELSE IF as two words, not ELSEIF. Using ELSEIF causes a syntax error. Aggregations inside IF are allowed. END is present.