This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I got 3 differenet columns and I want to create a String Array for them and I want them into a table
Ex:
| Cars | Model | Color |
| Honda | Civic | White |
| Mazda | CX9 | Black |
| Toyota | Camry | Red |
I'm not sure about the String function that needed to be used!
Thank you!
Solved! Go to Solution.
Hi @BenMoses ,
You can use COMBINEVALUES to concatenate those columns
You can also use & sign but this will result to a more verbose formula
Hi @BenMoses ,
You can use COMBINEVALUES to concatenate those columns
You can also use & sign but this will result to a more verbose formula
Create a custom column in the Power Query and add this M code.
= "[" & Text.From([Cars]) & ", " & Text.From([Model]) & ", " & Text.From([Color]) & "]".
This should help you achieve the output you are looking for.
Let me know if this works.
formatted String ["Car", "Model", "Color"]
Thank you
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 |
|---|---|
| 27 | |
| 25 | |
| 22 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 51 | |
| 47 | |
| 23 | |
| 18 | |
| 18 |