Reputation: 5356
I figured out how to take my audit tables and combine them..
Audit Company Audit Contacts Audit Referrals etc..
So Now I need an additional column in my merged table so I know what table the data came from ? How can I do this in power query?
Upvotes: 1
Views: 650
Reputation: 2544
Before merging the tables add a new column to each table you want to merge:
= Table.AddColumn(#"Source", "Original table", each "Audit Company")
Upvotes: 1