Hi All
Please help me.
Can I merge columns in the Query editor by column name (if the colname contain the setted text)?
And how can i do?
I would like to merge the columns (in the query editor), which name started with "LinkedStore" string. And this "LinkedStore_* " columns number is dinamically changing.
For example:
I saw in the advance editor, and combine the following but...
let Source = #"HUData (2)", ColNames = Table.ColumnNames(Source), TransformCommand = List.Transform(ColNames, each {_, type text}), #"Changed Type1" = Table.TransformColumnTypes(Source, TransformCommand), #"Merged Columns" = Table.CombineColumns(#"Changed Type1", ColNames,Combiner.CombineTextByDelimiter("", QuoteStyle.None),"Merged") in #"Merged Columns"
Thanks a lot