As Ali indicated earlier. Power Query is the way to go. Here is a file with all your data and the Mcode that did that.
let
Source = Table.Combine({aicg, gmtc, ubic, ustc})
in
Source
Review PQ
In the attached file
Click on any cell in the new table
On the Data Tab, click on Queries & Connections
In the right window, double click to open Query
Review PQ steps
M-code basics:
- "let" is the start of a query
- "in" is the closing of a query
- each transformation step sits in between those 2 lines
- each step line is ended by a comma, except the last one
- "Source" is always the first step (Source Data)
- After "in" you have the last step referenced
Bookmarks