Dashboard Mode - Cross-database joins
Business Question
How can we combine sales data from our SQL database with customer info from an Excel file to analyze total sales by customer region?
How can we combine sales data from our SQL database with customer info from an Excel file to analyze total sales by customer region?
| OrderID | CustomerID | SalesAmount |
|---|---|---|
| 1001 | C001 | 250 |
| 1002 | C002 | 450 |
| 1003 | C003 | 300 |
| 1004 | C001 | 150 |
| 1005 | C004 | 500 |
| CustomerID | CustomerName | Region |
|---|---|---|
| C001 | Alpha Corp | East |
| C002 | Beta LLC | West |
| C003 | Gamma Inc | East |
| C004 | Delta Co | South |
| C005 | Epsilon Ltd | North |
Join Details: Inner join on CustomerID between SQL Sales Data and Excel Customer Data
Calculated Field for Sales by Region: SUM([SalesAmount])
+----------------------+-----------------------+ | Total Sales | Sales by Region | | (KPI Card) | (Bar Chart) | +----------------------+-----------------------+ | Sales Details Table | +----------------------------------------------------+
A filter on Region lets users select one or more regions.
When a region is selected, the Sales by Region bar chart updates to show only those regions.
The Total Sales KPI updates to sum sales only for the selected regions.
The Sales Details table filters to show only orders from customers in the selected regions.
If you add a filter for Region = East, which components update and what data do they show?