Power BI - Getting Data
Given this Power Query M code snippet connecting to an OData feed:
What will be the result?
let
Source = OData.Feed("https://services.odata.org/V4/Northwind/Northwind.svc/Products"),
Filtered = Table.SelectRows(Source, each [CategoryID] = 1)
in
FilteredWhat will be the result?
