Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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]
User | Count |
---|---|
59 | |
58 | |
56 | |
38 | |
29 |
User | Count |
---|---|
82 | |
62 | |
45 | |
40 | |
39 |