Dashboard Mode - Multiple data sources in one report
Business Question
How can we combine sales data and customer feedback data from two different sources into one report to understand overall performance and customer satisfaction?
How can we combine sales data and customer feedback data from two different sources into one report to understand overall performance and customer satisfaction?
| OrderID | CustomerID | SalesAmount | Region |
|---|---|---|---|
| 1001 | C001 | 250 | North |
| 1002 | C002 | 450 | South |
| 1003 | C003 | 300 | East |
| 1004 | C001 | 150 | North |
| 1005 | C004 | 500 | West |
| FeedbackID | CustomerID | Rating | Comments |
|---|---|---|---|
| F001 | C001 | 4 | Good service |
| F002 | C002 | 5 | Excellent |
| F003 | C003 | 3 | Average experience |
| F004 | C004 | 2 | Slow delivery |
| F005 | C001 | 5 | Very satisfied |
Total Sales = SUM('Sales Data'[SalesAmount])Average Rating = AVERAGE('Customer Feedback'[Rating])Total Sales per Customer = CALCULATE(SUM('Sales Data'[SalesAmount]), FILTER('Sales Data', 'Sales Data'[CustomerID] = SELECTEDVALUE('Customer Feedback'[CustomerID])))Average Rating per Customer = CALCULATE(AVERAGE('Customer Feedback'[Rating]), FILTER('Customer Feedback', 'Customer Feedback'[CustomerID] = SELECTEDVALUE('Customer Feedback'[CustomerID])))+----------------------+----------------------+ | Total Sales | Average Customer | | (KPI Card) | Rating (KPI) | +----------------------+----------------------+ | Bar Chart: Sales by Region | +---------------------------------------------------------------------+ | Table: Customer Summary | +---------------------------------------------------------------------+
A slicer for Region filters the Sales Data and updates the Total Sales KPI, Sales by Region bar chart, and the Customer Summary table to show only customers and sales in the selected region.
A slicer for CustomerID filters the Customer Summary table and updates the Average Customer Rating KPI to show the rating for the selected customer only.
If you add a filter for Region = North, which components update and what changes occur?