Complete the code to create a join between two data sources in Tableau.
JOIN ON [1] = CustomerIDIn Tableau, when joining data sources, you specify the field from the primary data source first. Here, Orders.CustomerID is the correct field to join on.
Complete the code to blend data sources using a common field in Tableau.
Data blending is done by linking on [1]Data blending in Tableau requires a common field to link the data sources. Usually, Date is a common field used for blending time-based data.
Fix the error in the Tableau calculated field to aggregate data from multiple sources.
SUM([1]) + SUM([Sales])When aggregating fields from multiple data sources in Tableau, you must specify the data source name before the field in square brackets, like [Orders].[Profit].
Fill both blanks to correctly create a relationship between two data sources in Tableau.
CREATE RELATIONSHIP BETWEEN [1] AND [2]
To create a relationship between Orders and Customers, you link Orders.CustomerID to Customers.CustomerID.
Fill all three blanks to write a Tableau LOD expression that calculates total sales per customer across multiple data sources.
{ FIXED [1] : SUM([2].[3]) }The LOD expression fixes the calculation by CustomerID and sums the [Sales] field from the [Orders] data source.