Power BI - Getting Data
Given this Power Query M code snippet:
What will this query return?
let
Source = OData.Feed("https://services.odata.org/V4/Northwind/Northwind.svc/Orders"),
Filtered = Table.SelectRows(Source, each [ShipCountry] = "USA")
in
FilteredWhat will this query return?
