Dashboard Mode - Why connecting to data sources is the first step
Business Question
Why is connecting to data sources the first step in building a Power BI dashboard?
Why is connecting to data sources the first step in building a Power BI dashboard?
| Order ID | Product | Region | Sales Amount | Order Date |
|---|---|---|---|---|
| 1001 | Notebook | East | 250 | 2024-01-15 |
| 1002 | Pen | West | 150 | 2024-01-20 |
| 1003 | Notebook | East | 300 | 2024-02-05 |
| 1004 | Marker | South | 200 | 2024-02-10 |
| 1005 | Pen | North | 100 | 2024-03-01 |
| 1006 | Notebook | West | 350 | 2024-03-15 |
Total Sales = SUM('Sales'[Sales Amount])Axis = 'Sales'[Region], Values = SUM('Sales'[Sales Amount])Axis = 'Sales'[Order Date], Values = SUM('Sales'[Sales Amount])+----------------------+----------------------+ | Total Sales | Sales by Region | | (KPI Card) | (Bar Chart) | +----------------------+----------------------+ | Sales Over Time | | (Line Chart) | +------------------------------------------------+ | Sales Details | | (Table) | +------------------------------------------------+
Adding a filter for Region will update:
This shows how connecting to data sources first allows all visuals to use the same data and respond together.
If you add a filter for Region = East, which components update and what changes?