Often we face the challenge of having to merge csv files or txt files in a folder, into a single file. Excel is the obvious tool for such tasks and today I will show a couple of easy ways for merging multiple files, in a single or even a whole structure of folders, into a single CSV or text file. To merge csv files or other text files it is often best to use Visual Basic for Applications in Excel.
Let’s start with the simplest approach using Windows Command line without having to use Excel.
This approach uses the Windows Command line Copy command.
Open in Windows Explorer the folder containing CSV or TXT files to be merged. These should be without headers or only the first file should be with headers.
If you wish to merge multiple entire documents into a single file in one step, you can instead open the File tab in the Editor, and under New Document, use the Combine files into a single PDF option. If you are looking for Batch options Please see the PDF-Tools section below. Mar 31, 2020.
Click on the filepath of the Windows Explorer window and type cmd and hit ENTER.
The CMD Windows command line Window should open. Type the following command and hit ENTER to merge files
The result will be the newly created merge.csv file with merged data across all CSV files within the directory.
The previous method was very simple and didn’t require the use of Excel or MS Office. The below and the following approaches will provided you with more flexibility when merging files. If you don’t know how to use Macros in Excel read my Tutorial first.
Assuming you want to merge a list of files in a String Array you can use the procedure below. It will merge all provided csv or text files into a single new text file.
See an example below of how to use the MergeFiles procedure:
fileNames()
Array of Strings representing full file paths to files that are to be merged
newFileName
The name of the new merged file that is to be created
headers
Optional. True by default. This is meant for CSV TXT files (HDR). If True assumes that all files have headers (first row with columns). Only first header will be merged into the new file (newFileName)
addNewLine
Optional. False by default. If True a new line (vbNewLine) character will be added between each merged file
Another case is when you want to merge all csv files within a single folder. This procedure is similar to the previous one with the exception that it runs through all files within a single directory (excluding subdirectories – for that scroll to next procedure). You can also use wildcards such as “*.csv” to be sure that only csv files are merged a not other files – read my post on the VBA Dir function to learn more.
See an example below of how to use the MergeFilesInFolder procedure:
folderName
A folder including all files to be merged. Wildcards are permitted if supported by the VBA Dir function
newFileName
The name of the new merged file that is to be created
headers
Optional. True by default. This is meant for csv files (HDR). If True assumes that all files have headers (first row with columns). Only first header will be merged into the new file (newFileName)
addNewLine
Optional. False by default. If True a new line (vbNewLine) character will be added between each merged file
The most complex case is when you want to merge files not only within a certain directory but also within all subdirectories. This will equally work for a scenario when there are no subfolders.
See an example below of how to use the MergeFilesInSubFoldersprocedure:
folderName
A folder with or without subfolders including all files to be merged. Use wildcards with pattern parameter
pattern
If needed a pattern using wildcards permitted by the VBA Dir function
newFileName
The name of the new merged file that is to be created
headers
Optional. True by default. This is meant for csv files (HDR). If True assumes that all files have headers (first row with columns). Only first header will be merged into the new file (newFileName)
addNewLine
Optional. False by default. If True a new line (vbNewLine) character will be added between each merged file
Sometimes we want to download just a subset of records in our CSV files. One way is uploading the data and then filtering it in Excel. But why not do it in one go? See my SQL AddIn or my read CSV file using SQL example in this post here.