0
1
Before anyone states that this problem has already been answered before, I am looking for a automatic (macro, program, etc) system that can achieve the following:
- Merge multiple workbooks (separate files, not sheets) by a common column.
The first column is the same for all the files. However, there are 500 individual csv files, each with about 7000 rows
I am aware of the VLOOKUP() function, the Consolidate function, and programs like Kutools and Ablebits. However, none of these seem to suit my purpose of creating a single workbook with all of these files combined by the common column.
Does anyone know of a VBA macro or other program that can assist me with this?
EDIT: Below are links to two of the 500 files:
1.https://docs.google.com/spreadsheets/d/1rRdNS9K6QYjfH2_P9wmR5YS0-Ectl1SnVn2SfFz9UUY/edit?usp=sharing
2.https://docs.google.com/spreadsheets/d/13Dmc6hKHCG4RBF2an3NZ7nux5ffI5F5cigbz5fFyaPI/edit?usp=sharing
How many columns does your csv files have? Can you provide a sample of your data? Is a python solution acceptable (a dozen lines of python + pandas should do the trick...)? – agtoever – 2018-06-13T18:43:40.250
Python is perfectly fine! Each .csv file only has two columns. – koreamaniac101 – 2018-06-13T18:58:26.713
So the output should be a csv file with ~7000 rows and ~500+1 columns? – agtoever – 2018-06-13T18:59:52.923
Precisely. Also, I have edited the original post to include two of the 500 files. As you can see, the first columns of each file are identical. – koreamaniac101 – 2018-06-13T19:04:29.070