Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
77 | |
76 | |
57 | |
36 | |
34 |
User | Count |
---|---|
99 | |
56 | |
56 | |
46 | |
40 |