Merge CSV Files

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Is there a way to merge multiple CSV files to get all the rows in the same txt
file?

Thanks!

Tom
 
At the command prompt:
copy file1.csv + file2.csv target.csv

If you need to do it programatically, see help on Open, Line Input, Print #,
EOF(), and Close.
 
You can use a nifty little program called Bulk File Merger. I managed to bang out 200 csv files in a matter of minutes. Neat little app. You can also merge pdf and excel files with this app.
 
Back
Top