|
连带重复的字段名都顺便去掉了
- let
- Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("VY1BDoIwFESvYljbE5HepDuNaCURVrjAhcZqJV24gKg14mX6P+0trFBMXM5k5r04jtxMukKS7rmxmfCBQXmFVBNIC6NVRKe/ia0PwPffCS4zLBUxWkO+HQKzzdwlOe4E6ozYpMJyNVQj0Nw5NrceGP72dbLtIvxH7fGCtZiw4ITHG3LuQ//7c3hep8+4lqjaiNIP", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Content = _t]),
- Custom1 = Table.Combine(List.Transform(Source[Content], each let l = List.Zip(List.Transform(Text.Split(_, "|"), Splitter.SplitTextByEachDelimiter({"-"},QuoteStyle.Csv,false))) in Table.FromRows({l{1}}, l{0})))
- in
- Custom1
复制代码
|
|