Forum Discussion
skopcak
9 years agoHelper I
Power query editor - Adding text and columns in one step
I need to add a new column to merge In Excel would be a formula = CONCATENATE ("Example:"; A2) Result: Data 1 Result 1 Text1 Example: Text1 Text2 Example: Text2 Text3 Example: ...
- 9 years ago
= [Column1] & [Column2]
- 9 years ago
You need to escape the text like in Excel like this:
"Example"&[Data 1]
- 9 years ago
v-chuncz-msft
9 years agoCommunity Support