Forum Discussion
Francesco
9 years agoFrequent Visitor
How to put in order column sequence in a table ?
Hi, using UNION(table1, table2) I noticed that if columns are not on the same order ... it is a problem, bacause union mixes values of columns with the same name but in a different order. Is the...
- 9 years ago
You can try SELECTCOLUMNS.
Table = UNION ( SELECTCOLUMNS ( Table1, "column1", Table1[Column1], "column2", Table1[Column2] ), SELECTCOLUMNS ( Table2, "column1", Table2[Column1], "column2", Table2[Column2] ) )
Eric_Zhang
Microsoft Employee
9 years agoYou can try SELECTCOLUMNS.
Table =
UNION (
SELECTCOLUMNS ( Table1, "column1", Table1[Column1], "column2", Table1[Column2] ),
SELECTCOLUMNS ( Table2, "column1", Table2[Column1], "column2", Table2[Column2] )
)
- SYM19865 years ago
Helper I
have the same problem as Francesco ,
thank you @Eric_Zhang ,you give a good solution.