0
0
Tableaubi_tool~20 mins

Why connecting disparate data enables insights in Tableau - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master of Connecting Disparate Data
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding the benefit of connecting disparate data

Why does connecting data from different sources help businesses gain better insights?

AIt allows combining different perspectives to see the full picture.
BIt reduces the amount of data to analyze by filtering out duplicates.
CIt makes data visualization tools run faster by limiting data size.
DIt automatically cleans all data errors without manual work.
Attempts:
2 left
💡 Hint

Think about how combining pieces of a puzzle helps you understand the whole image.

🎯 Scenario
intermediate
2:00remaining
Scenario: Combining sales and customer support data

A company wants to understand why some customers stop buying after a few purchases. They have sales data and customer support logs in separate systems. What is the best reason to connect these data sources?

ATo reduce the total number of records by merging duplicates.
BTo see if customers with many support issues tend to stop buying.
CTo create a single report that only shows sales numbers.
DTo speed up the loading time of the sales dashboard.
Attempts:
2 left
💡 Hint

Think about how support experience might affect customer buying behavior.

dax_lod_result
advanced
3:00remaining
DAX measure for combined sales and returns

Given two tables: Sales with columns OrderID, Amount and Returns with OrderID, ReturnAmount, which DAX measure correctly calculates net sales (sales minus returns) for each product?

ANet Sales = CALCULATE(SUM(Sales[Amount]) - SUM(Returns[ReturnAmount]), ALLEXCEPT(Sales, Sales[OrderID]))
BNet Sales = SUM(Sales[Amount]) + SUM(Returns[ReturnAmount])
CNet Sales = SUM(Sales[Amount]) - SUM(Returns[ReturnAmount])
DNet Sales = SUM(Sales[Amount]) - CALCULATE(SUM(Returns[ReturnAmount]), FILTER(Returns, Returns[OrderID] = Sales[OrderID]))
Attempts:
2 left
💡 Hint

Think about filtering returns to match sales by OrderID before subtracting.

visualization
advanced
2:30remaining
Best visualization to show combined data insights

You have connected customer demographics data with purchase history. Which visualization best helps identify which age groups buy specific product categories?

APie chart showing percentage of customers by age group.
BLine chart showing total sales over time.
CStacked bar chart showing purchase count by age group and product category.
DScatter plot showing purchase amount vs. customer income.
Attempts:
2 left
💡 Hint

Look for a chart that compares categories across groups clearly.

🔧 Formula Fix
expert
3:00remaining
Debugging a Tableau join causing incorrect results

A Tableau dashboard connects customer and order data but shows duplicate orders for some customers. What is the most likely cause?

AThe join is a many-to-many join without proper aggregation, causing duplicates.
BThe data source connection is set to live instead of extract.
CThe dashboard filters are not applied to all worksheets.
DThe date fields are formatted differently in each table.
Attempts:
2 left
💡 Hint

Think about how joins can multiply rows when keys are not unique.