Forum Discussion
BenMoses
2 years agoNew Member
Creating a String Array in Power BI
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...
sroy_16
Resolver II
2 years agoCreate 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.