Which statement best describes the difference between a Union and a Join in Tableau?
Think about whether you are adding rows or columns when combining tables.
In Tableau, a Union appends tables vertically, adding rows from each table. A Join combines tables horizontally by matching rows based on key columns, adding columns.
Given two tables in Tableau: Customers with 5 rows and Orders with 10 rows, where 3 customers have orders, what is the number of rows after a Left Join of Customers to Orders?
Remember, a Left Join keeps all rows from the left table.
A Left Join keeps all rows from the left table (Customers). Since Customers has 5 rows, the result will have 5 rows, with matching Orders data where available.
You have two tables with sales data for two different years. You perform a Union in Tableau. Which visualization best shows the combined sales over both years?
Think about how a Union stacks data and how to show combined trends.
A Union stacks data vertically, so combining sales from both years allows a line chart over time to show the total sales trend across years.
You performed an Inner Join between Products and Sales tables on Product ID, but some expected products are missing in the result. What is the most likely cause?
Consider how Inner Join works with matching keys.
An Inner Join returns only rows with matching keys in both tables. If some Product IDs in Products don't exist in Sales, those rows are excluded, causing missing products.
Your company has two separate Excel files: one with customer contact info and another with customer purchase history. You want to create a Tableau dashboard showing all customers with their purchase totals. Which method should you use to combine these files?
Think about how to combine related data with matching keys.
Joining on Customer ID combines contact info and purchase history horizontally, allowing analysis of customers with their purchase totals in one table.