Power Query 2016 standalone
I have a table with columns like this
Market | mapped Brand | mapped Subbrand |
name | text 1 | text 2
I need to concatenate columns that contain a word "mapped" into a new column
I'm trying this:
Text.Combine( List.FindText(Table.ColumnNames(Source), "mapped") , " ")
and get result in every row as a concat of column names
mapped Brand mapped Subbrand
and I need a concat of their values
text 1 text 2