Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.