Dashboard Mode - OData and REST API connections
Business Question
How can we connect Power BI to online data sources using OData and REST API to create a live sales dashboard?
How can we connect Power BI to online data sources using OData and REST API to create a live sales dashboard?
Data is fetched live from an OData feed and a REST API providing sales orders and customer info.
| OrderID | Customer | OrderDate | SalesAmount | Region |
|---|---|---|---|---|
| 1001 | Alpha Co | 2024-01-15 | 250 | North |
| 1002 | Beta LLC | 2024-01-20 | 400 | East |
| 1003 | Gamma Inc | 2024-02-05 | 150 | South |
| 1004 | Alpha Co | 2024-02-10 | 300 | North |
| 1005 | Delta Ltd | 2024-02-15 | 500 | West |
Total Sales = SUM(Sales[SalesAmount])
+----------------------+----------------------+ | Total Sales | Sales by Region | | (KPI Card) | (Bar Chart) | +----------------------+----------------------+ | Recent Orders | | (Table) | +----------------------------------------------+
A slicer filters data by Region. Selecting a region updates the Total Sales KPI, the Sales by Region bar chart (highlighting the selected region), and the Recent Orders table to show only orders from that region.
Data refreshes automatically from the OData and REST API sources when the dashboard is opened or refreshed, ensuring live data.
Add a filter for Region = North. Which components update and what changes occur?