Dashboard Mode - Multiple data sources
Business Question
How can we combine sales data and customer data from two different sources to analyze total sales by customer region?
How can we combine sales data and customer data from two different sources to analyze total sales by customer region?
| Order ID | Customer ID | Sales Amount |
|---|---|---|
| 1001 | C001 | 250 |
| 1002 | C002 | 450 |
| 1003 | C003 | 300 |
| 1004 | C001 | 150 |
| 1005 | C004 | 500 |
| Customer ID | Customer Name | Region |
|---|---|---|
| C001 | Alice | East |
| C002 | Bob | West |
| C003 | Charlie | East |
| C004 | Diana | South |
| C005 | Eva | West |
SUM([Sales Amount])Customer IDSales Amount grouped by RegionOrder ID, Customer Name, Region, Sales Amount+----------------------+-----------------------+ | Total Sales | Sales by Region | | (KPI Card) | (Bar Chart) | +----------------------+-----------------------+ | Sales Details Table | | | +----------------------------------------------+
A filter on Region allows users to select one or more regions. When a region is selected:
This filter connects both data sources through the Region field after the join.
Question: Add a filter for Region = East. Which components update and what are their new values?
Answer: