The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I'm connecting to ADO via an Odata connection. When I try to expand one of the columns to extract a field, I get the below error.
This is my query:
let
Source = OData.Feed("https://analytics.dev.azure.com/MyOrganization/My%20Project/_odata/v3.0-preview/WorkItems?", null, [Implementation="2.0"]),
#"Expanded StateChangeOn" = Table.ExpandRecordColumn(Source, "StateChangeOn", {"Date"}, {"StateChangeOn.Date"})
in
#"Expanded StateChangeOn"
It doesn't matter which field I try to expand, I get the same error on any column. Any help is appreciated.
Hi @MoeAnalytics ,
Seem that your query violates an OData error rule,check the reference below:
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!