admin管理员组文章数量:1377734
I have a problem on Power BI service when updating my DataFlow which retrieves some data from Jira.
Some of the data are record types and this would prevent PowerBI Service from updating the dataflow.
Here's what the error says:
Error code: Mashup Exception Expression Error Error Details: Couldn't refresh the entity because of an issue with the mashup document MashupException.Error: Expression.Error: Failed to insert an array, InnerException: Sorry... We were unable to convert a value of type Record to type Text., UnderlyingError : Sorry... We were unable to convert a Record value to Text. Details: Reason = Expression.Error;ErrorCode = Lakehouse036;Message = Sorry... We were unable to convert a Record value to Text;Message.Format = Sorry... We were unable to convert a value of type #{0} to type #{1}.;Message.Parameters = {"Record", "Text"};ErrorCode = 10276;Microsoft.Data.Mashup.Error.Context = System (request ID: 5db53da9-ce10-4f11-b58e-c7872421bb86).
Here is my code:
#"Expanded get Constellation Issues" = Table.ExpandTableColumn(#"Quitar StartAT", "get Constellation Issues", {"Column1"}, {"get Constellation Issues"}),
#"Expanded Constellation Issues" = Table.ExpandRecordColumn(#"Expanded get Constellation Issues", "get Constellation Issues", {"id", "key", "fields", "changelog"}, {"ID", "ISSUE", "fields","Changelog"}),
#"Quitar ID Nulos" = Table.SelectRows(#"Expanded Constellation Issues", each ([ID] <> null)),
#"Expanded Issue" = Table.ExpandRecordColumn(#"Quitar ID Nulos", "fields", #"00-FIELDS JIRA"[id], #"00-FIELDS JIRA"[ANGLAIS]),
#"Expand Issue Type" = Table.ExpandRecordColumn(#"Expanded Issue", "Issue Type", {"id"}, {"Issue Type"}),
#"JOIN Jira Issue Type" = Table.NestedJoin(#"Expand Issue Type", {"Issue Type"}, #"JIRA ISSUE TYPES", {"id"}, "JIRA ISSUE TYPES", JoinKind.LeftOuter),
#"ADD Issue Type Name" = Table.ExpandTableColumn(#"JOIN Jira Issue Type", "JIRA ISSUE TYPES", {"FRANÇAIS"}, {"Issue Type Name"}),
本文标签: powerqueryWe were unable to convert a value of type Record to type TextStack Overflow
版权声明:本文标题:powerquery - We were unable to convert a value of type Record to type Text - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744396787a2604256.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论