Forum Discussion
Anonymous
7 years agoNot applicable
concatenate a numeric column with text power query
I want to make a new column in power query, and want to contanate a numeric column with extra text. I get an error when I try: = Table.AddColumn(#"Added Custom1", "Custom.1", each Text.Combine({"...
Interkoubess
Solution Sage
7 years agoHi Anonymous,
Try this :
Table.AddColumn(#"Added Custom1", "Custom.1", each [Status] & Number.ToText([ActivityID]))
I suppose [Status] is a column.
Ninter
- Anonymous7 years agoNot applicableThanks for the reply. Actually, "Status" is free text. The pivoted columns are all numeric, and after pivoting becomes fields called 1,2,3...
- Interkoubess7 years ago
Solution Sage
It also works with free text.
Ninter