0
0
Tableaubi_tool~20 mins

Multiple data sources in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Multiple Data Sources Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Data Blending in Tableau

In Tableau, when you blend data from two different sources, what happens if the linking field has mismatched data types between the primary and secondary sources?

AThe blend works but may produce incorrect or incomplete results due to mismatched data types.
BTableau automatically converts the data types to match and blends the data without errors.
CTableau shows a warning and does not blend the data until the data types match.
DThe blend fails silently and returns no data for the secondary source.
Attempts:
2 left
💡 Hint

Think about how data type mismatches affect matching keys in joins or blends.

dax_lod_result
intermediate
2:00remaining
Calculating Total Sales from Multiple Sources

You have two data sources in Tableau: Sales_US and Sales_EU. Both have a SalesAmount field. You want to create a calculated field that sums sales from both sources. Which Tableau calculation correctly sums these amounts assuming data blending with Sales_US as primary?

ASUM([Sales_US].[SalesAmount]) + SUM([Sales_EU].[SalesAmount]) WITHOUT DATA BLENDING
BSUM([SalesAmount])
CSUM([Sales_US].[SalesAmount]) + SUM([Sales_EU].[SalesAmount])
DSUM([Sales_US].[SalesAmount]) + SUM([Sales_EU].[SalesAmount]) using data blending with secondary source aggregation
Attempts:
2 left
💡 Hint

Remember how Tableau aggregates data from secondary sources in blends.

visualization
advanced
2:00remaining
Designing a Dashboard with Multiple Data Sources

You have two data sources: one with customer demographics and another with sales transactions. You want to create a dashboard that filters sales by customer age group. What is the best practice to ensure the filter works correctly across both data sources?

AJoin the two data sources into one before building the dashboard to enable filtering.
BUse a global filter on the customer age group field from the primary data source only.
CBlend the two data sources on customer ID and use a filter on the age group field from the primary source.
DCreate a parameter for age group and use it to filter both data sources separately.
Attempts:
2 left
💡 Hint

Think about how filters behave with blends versus joins.

🔧 Formula Fix
advanced
2:00remaining
Troubleshooting Data Source Refresh Issues

After blending two data sources in Tableau, you notice that the secondary source data does not update when you refresh the workbook. What is the most likely cause?

AThe secondary data source is set to live connection but the primary is extract.
BThe secondary data source is an extract and was not refreshed before opening the workbook.
CThe linking fields have different names causing the blend to fail.
DThe workbook is set to manual refresh mode for all data sources.
Attempts:
2 left
💡 Hint

Consider how Tableau handles extracts and live connections.

🎯 Scenario
expert
3:00remaining
Optimizing Performance with Multiple Data Sources

You have a Tableau dashboard using three large data sources blended together. Users report slow load times. Which approach will most effectively improve performance without losing data accuracy?

AConvert all data sources to live connections to avoid extract refresh delays.
BRemove blending and use separate worksheets for each data source without combining data.
CCreate a single combined extract by joining the data sources outside Tableau and connect Tableau to this extract.
DUse data blending but limit the number of fields used from secondary sources.
Attempts:
2 left
💡 Hint

Think about how data blending affects query performance and how extracts can help.