Hi, I have a number of CSV (comma delimited) files containing various test data. I would like to combine them into one CSV file, but the difficulty that I am facing is that I don’t want to append the files in rows, but rather append to the next available column. All files have a common column named Time in the first column. Each file contains different number of columns with test data, but all have the same number of rows. For example:
File 1:
Time, Temp1, Temp2
File 2:
Time, Temp3, Temp4, Temp5, Temp6
File 3:
Time, Temp7
The combined file should have all data organized in the following manner:
Time, Temp1,Temp2,Temp3,Temp4,Temp5,Temp6,Temp7
______
I have tried using Power Query but failed to reach my objective. Can anyone guide me on the process to achieve this using either Power Query or any other method?
Thanks and kind regards,
Hanan