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
I have two tables, each with one row. When i try to append them and create a new table, it shows up as two rows. Column 1 is table one, and column 2 is table 2.
Any ideas?
Solved! Go to Solution.
HI @thampton,
Not sure if I'm getting your issue correctly, you refer that you are appending 2 tables, so the final result is a single table with all the rows of the tables you are appending, if each of the tables have 1 row you will get 2 rows.
Another thing to have in mind is that in order to make appends both table need to have the same name in colums if you have different names you will get adittional columns in your final table.
Example:
Both tables with same name columns
| Table 1 | |
| Column 1 | Column 2 |
| A | 1 |
| Table 2 | |
| Column 1 | Column 2 |
| B | 2 |
| Final Table | |
| Column 1 | Column 2 |
| A | 1 |
| B | 2 |
Both tables with different name columns:
| Table 1 | ||
| Column 1 | Column 2 | |
| A | 1 | |
| Table 2 | ||
| Column 1 | Column 3 | |
| B | 2 | |
| Final Table | ||
| Column 1 | Column 2 | Column 3 |
| A | 1 | null |
| B | null | 2 |
So you will get different results, what do you want to achieve?
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHI @thampton,
Not sure if I'm getting your issue correctly, you refer that you are appending 2 tables, so the final result is a single table with all the rows of the tables you are appending, if each of the tables have 1 row you will get 2 rows.
Another thing to have in mind is that in order to make appends both table need to have the same name in colums if you have different names you will get adittional columns in your final table.
Example:
Both tables with same name columns
| Table 1 | |
| Column 1 | Column 2 |
| A | 1 |
| Table 2 | |
| Column 1 | Column 2 |
| B | 2 |
| Final Table | |
| Column 1 | Column 2 |
| A | 1 |
| B | 2 |
Both tables with different name columns:
| Table 1 | ||
| Column 1 | Column 2 | |
| A | 1 | |
| Table 2 | ||
| Column 1 | Column 3 | |
| B | 2 | |
| Final Table | ||
| Column 1 | Column 2 | Column 3 |
| A | 1 | null |
| B | null | 2 |
So you will get different results, what do you want to achieve?
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em Português@MFelix Thank you! I had an extra space in one of the column headers so they were different; After changing, it worked.
@thampton Not sure whether you are looking for Append or Merge. Please post the sample data and expected output to understand your scenario.
Proud to be a PBI Community Champion
@PattemManohar I can not post because it contains sensitive data. I am using Append As New. I would like for the the two tables to merge in one column.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!