Dashboard Mode - SQL Server connection
Business Question
How can we connect Power BI to a SQL Server database to load sales data and create a simple report?
How can we connect Power BI to a SQL Server database to load sales data and create a simple report?
| OrderID | Customer | Region | SalesAmount | OrderDate |
|---|---|---|---|---|
| 1001 | Alpha Co | East | 250 | 2024-01-15 |
| 1002 | Beta LLC | West | 400 | 2024-01-20 |
| 1003 | Gamma Inc | East | 150 | 2024-02-05 |
| 1004 | Delta Ltd | South | 300 | 2024-02-10 |
| 1005 | Epsilon | West | 500 | 2024-03-01 |
Total Sales = SUM('Sales'[SalesAmount])+----------------------+----------------------+
| Total Sales | Sales by Region |
| (KPI Card) | (Bar Chart) |
+----------------------+----------------------+
| Sales Details Table |
+--------------------------------------------------+
A slicer filter on Region allows users to select one or more regions. When a region is selected:
If you add a filter selecting Region = West, which components update and what are their new values?