Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
#"Merged Queries" = Table.NestedJoin(#"Replaced Value", {"Country"}, Table, {"Country_short"}, "Table", JoinKind.LeftOuter),
#"Expanded Table1" = Table.ExpandTableColumn(#"Merged Queries", "Table", {"Company", "Country"}, {"Table.Company", "Table.Country"})
How do I combine those two column in #'Expanded Table1'? In the end i want to have on string in one column like. Company & "(" & Country & ")"
Solved! Go to Solution.
Hi @Anonymous! You can try the following M code:
= Table.CombineColumns(#"Expanded Table1",{"Company", "Country"},Combiner.CombineTextByDelimiter(" - ", QuoteStyle.None),"Company - Country")
Please note that I used " - " as a separator for the column so change it according to your needs!
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Hi @Anonymous! You can try the following M code:
= Table.CombineColumns(#"Expanded Table1",{"Company", "Country"},Combiner.CombineTextByDelimiter(" - ", QuoteStyle.None),"Company - Country")
Please note that I used " - " as a separator for the column so change it according to your needs!
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 7 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 22 | |
| 14 | |
| 11 | |
| 10 | |
| 9 |