This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.
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: Text3 |
How to describe the formula in the power query editor?
thank you answer
Solved! Go to Solution.
= [Column1] & [Column2]
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
You could also use Text.Insert.
Text.Insert([Data 1], 0, "Example: ")
You could also use Text.Insert.
Text.Insert([Data 1], 0, "Example: ")
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
= [Column1] & [Column2]
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 21 | |
| 21 | |
| 21 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 56 | |
| 54 | |
| 48 | |
| 26 | |
| 24 |