Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
tbobolz
Resolver I
Resolver I

Expertise needed PLEASE. Merging tables same data type, yet different header names

I have not had much experience with merge and append and from my understanding, what I'd like to achieve is somewhat different then the merge or apend function. 

 

I have two table from different sources/companies; however, the data format is the same, row value would be unique, but headers are named differently. Both are imported via a a schedule gateway connection. 

 

Table one, which is already established and has an extensive reporting packed built around it, list surgeries with the say the following fields:   Loaction, Surgeon, Charges, Date.

 

Table two list the same fileds but named differently:         Entity, Physician.Surgeon, Amount, Date.  

 

Patient visits are unique, so no worries about one to many, or many to many relationships.

 

Is it possible to join/merge these two tables, and establish a new single table with unique header names? My alternative is to manually do it then load. I'm trying to automate the entire process and avoid that.

 

Thanks for any advice you can offer.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @tbobolz ,

If your tables have same data structures, you can consider using Table.Combine function to merge two tables.

let
    Source1 = xxxx,
    Source2 = xxxx,
    merged= Table.Combine({Source1,Source2})
in
    merged

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

HI @tbobolz ,

If your tables have same data structures, you can consider using Table.Combine function to merge two tables.

let
    Source1 = xxxx,
    Source2 = xxxx,
    merged= Table.Combine({Source1,Source2})
in
    merged

Regards,

Xiaoxin Sheng

TomMartens
Super User
Super User

Hey @tbobolz ,

 

due to the fact that a lot of reports are build based on the names of table A,

I would recommend the following:

  1. Load Table A
  2. Load Table B
  3. Rename the columns of Table B to the names of the Table A
  4. Append Table B to Table A

The renaming has to be done just once, even after publishing the report to the service it will work.

 

Hopefully this provides you with some ideas.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors