Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
skopcak
Helper I
Helper 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 1Result 1
Text1Example: Text1
Text2Example: Text2
Text3Example: Text3

 

How to describe the formula in the power query editor?

 

image.jpg

 

 

thank you answer

3 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

= [Column1] & [Column2]


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

ImkeF
Community Champion
Community Champion

You need to escape the text like in Excel like this:

 

"Example"&[Data 1]

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

View solution in original post

v-chuncz-msft
Community Support
Community Support

@skopcak,

 

You could also use Text.Insert.

Text.Insert([Data 1], 0, "Example: ")
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@skopcak,

 

You could also use Text.Insert.

Text.Insert([Data 1], 0, "Example: ")
Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
ImkeF
Community Champion
Community Champion

You need to escape the text like in Excel like this:

 

"Example"&[Data 1]

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Greg_Deckler
Community Champion
Community Champion

= [Column1] & [Column2]


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors