Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
I'm trying to merge the contents of two columns (text) in Transform Data Table with a new Custom Column but Custom Column window doesn't recognize CONCATENATE function and the formula produces error.
How could I merge the contents and why some functions are not recognized?
Solved! Go to Solution.
Hi @Anonymous ,
Microsoft Power BI supports two different languages, M language(in Power Query) and DAX .
CONCATENATE() function is used for DAX not for M.
So if you could use the following to get the same effect:
#"Grouped Rows" = Table.Group( #"Changed Type" , {"Cate"}, {{"Custom", each Text.Combine([Value], "/"), type text}})
Table 2 =
ADDCOLUMNS (
VALUES ( 'Table (2)'[Cate] ),
"Product",
CALCULATE (
CONCATENATEX ( VALUES ( 'Table (2)'[Value] ), 'Table (2)'[Value], "/ " )
)
)My final output looks like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
Hi @Anonymous ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or you are still confused about it, please provide me with more details about your table and your problem or share me with your pbix file from your Onedrive for Business.
Best Regards,
Eyelyn Qin
Hi @Anonymous ,
Microsoft Power BI supports two different languages, M language(in Power Query) and DAX .
CONCATENATE() function is used for DAX not for M.
So if you could use the following to get the same effect:
#"Grouped Rows" = Table.Group( #"Changed Type" , {"Cate"}, {{"Custom", each Text.Combine([Value], "/"), type text}})
Table 2 =
ADDCOLUMNS (
VALUES ( 'Table (2)'[Cate] ),
"Product",
CALCULATE (
CONCATENATEX ( VALUES ( 'Table (2)'[Value] ), 'Table (2)'[Value], "/ " )
)
)My final output looks like this:
Did I answer your question ? Please mark my reply as solution. Thank you very much.
If not, please upload some insensitive data samples and expected output.
Best Regards,
Eyelyn Qin
I did it with Merge Columns in Toolbar.
@Anonymous , Are you trying in power Query M. There you can Text.Combine , it need a list -https://docs.microsoft.com/en-us/powerquery-m/text-combine
Or try Like
New column = [col1] &" " &[col2]
In Dax you have concatenate
https://docs.microsoft.com/en-us/dax/concatenate-function-dax
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |