Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Is there a simple way i can append two tables via creating a new table in DAX. I dont want to do the append in Query editor. Is there a way of doing that in the the front end of the report with New Table. I can't use UNION as the column names dont match
Solved! Go to Solution.
You can union them after getting the column names matched up with SELECTCOLUMNS.
For example,
Appended =
UNION (
SELECTCOLUMNS ( Table1, "A", Table1[Col1], "B", Table1[Col2] ),
SELECTCOLUMNS ( Table2, "A", Table2[aCol], "B", Table2[bCol] )
)
This will return a table with columns [A] and [B] even though Table1 and Table2 did not have such column names.
You can union them after getting the column names matched up with SELECTCOLUMNS.
For example,
Appended =
UNION (
SELECTCOLUMNS ( Table1, "A", Table1[Col1], "B", Table1[Col2] ),
SELECTCOLUMNS ( Table2, "A", Table2[aCol], "B", Table2[bCol] )
)
This will return a table with columns [A] and [B] even though Table1 and Table2 did not have such column names.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.