Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

how to union multiple tables same column name but not same order

hello

 

My first table has the following fields in that order

employeeid, fullname, managerid, managername, herachypath, hierachydepth, level1, level2, level3, ..., allLevelSort, isleaf

 

while the second table has the same field but they are alphabetically sort.

 

When I want to create a new table  allManagers=union('dim manager Level 1' ,'dim manager level2 ') it gives stange things.

Does someone know how to solve this isssue.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous,

For Dax formulas, current you can only use 'SELECTCOLUMNS', 'SUMMARIZE', 'GROUPBY' functions to choose columns and define the order of the columns in variable tables and merge them with union functions.

Table = UNION(GROUPBY(T1,[1],[2],[3],[4],[5]),GROUPBY(T2,[1],[2],[3],[4],[5]))

In addition, you can also do merge table operation in query edit, it allows you to change the order of columns.

let
    Source = Table.Combine({@T1,Table.ReorderColumns(@T2,Table.ColumnNames(@T1))})
in
    Source

Regards,

Xiaoxin Sheng

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

What is the exact issue you are facing

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Capture20200122A.PNGCapture20200122B.PNG

 

 

if in the second table the order is not exactly the same as in dim manager level1, for ex: 

HierarchyDepth", 'dim Manager Level 1'[HierarchyDepth],  when I create a global table using a union, it add the wrong fields.
 
Is there a way to avoid that
 
Anonymous
Not applicable

Hi @Anonymous,

For Dax formulas, current you can only use 'SELECTCOLUMNS', 'SUMMARIZE', 'GROUPBY' functions to choose columns and define the order of the columns in variable tables and merge them with union functions.

Table = UNION(GROUPBY(T1,[1],[2],[3],[4],[5]),GROUPBY(T2,[1],[2],[3],[4],[5]))

In addition, you can also do merge table operation in query edit, it allows you to change the order of columns.

let
    Source = Table.Combine({@T1,Table.ReorderColumns(@T2,Table.ColumnNames(@T1))})
in
    Source

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.