Hi,
I am new into PowerBi and I am wondering if it possible to union different tables with same fields but different number of columns. As some tables have additional fields. I know that it is possible in Tableau. Is this possible in PowerBI? If so someone can help me with this?
Thank you
Solved! Go to Solution.
@Marck
It doesn't allow you to union two tables with different number of columns, however, if you can use SELECTCOLUMNS to select the required column to union the tables like:
New Table=
UNION(
SELECTCOLUMNS('Table1',"Col1",'Table'[Column1], "Col2",'Table'[Column1]),
SELECTCOLUMNS('Table2',"Col1",'Table2'[Column1], "Col2",'Table'[Column2]),
)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
@Marck
The code that I shared is to create a table, you can go to Modeling Tab, > New Table and Past the code below:
@Marck
It doesn't allow you to union two tables with different number of columns, however, if you can use SELECTCOLUMNS to select the required column to union the tables like:
New Table=
UNION(
SELECTCOLUMNS('Table1',"Col1",'Table'[Column1], "Col2",'Table'[Column1]),
SELECTCOLUMNS('Table2',"Col1",'Table2'[Column1], "Col2",'Table'[Column2]),
)
________________________
If my answer was helpful, please click Accept it as the solution to help other members find it useful
Click on the Thumbs-Up icon if you like this reply 🙂
Hi,
I have created the following DAX expression:
However, I get this error message:
'The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.'
How can I fix this?
@Marck
The code that I shared is to create a table, you can go to Modeling Tab, > New Table and Past the code below:
Thank you for your help
Check out new user group experience and if you are a leader please create your group
100+ sessions, 100+ speakers, Product managers, MVPs, and experts. All about Power BI. Attend online or watch the recordings.