March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Is it possible to combine 2 different tables where table 1 has 5 columns and table 2 has 7 columns using DAX? 4 columns in each of the table have the same column. It should be like the table has been appended with DAX formula.
Solved! Go to Solution.
Hi @Anonymous
For the Table with lesser columns you can use ADDColumns to addmissing columns as blank().
Then you can use a UNION function to combine the 2 tables
Something like this
CombinedTable = Union(Table1,ADDCOLUMNS(Table2,"MissingColumnName",BLANK()))
Hi @Anonymous
For the Table with lesser columns you can use ADDColumns to addmissing columns as blank().
Then you can use a UNION function to combine the 2 tables
Something like this
CombinedTable = Union(Table1,ADDCOLUMNS(Table2,"MissingColumnName",BLANK()))
@Anonymous
Union function just requires same number of columns
Columns are combined by position in their respective tables.
Same Names are not necessary
I was able to combine the tables but it took out the blank rows which were required.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
105 | |
98 | |
65 | |
54 |