Computing Staff
  • 4

Merging Multiple Csv Files With Batch Script

  • 4

hi,
the batch script for merging csvs i saw on this forum was Ok but my problem is that i don’t want the first column to be filled with the csv files names and i want the merged file name to be automatically named starting with “mergedcsvs”.todaysdate and 4digits number consecutively without overwriting the previously merged file in the folder.

thanks.

Share

2 Answers

  1. Windows batch merge csv files
    How to Combine Multiple CSV Files Into One
    Browse to the folder with the CSV files.
    Hold down Shift, then right-click the folder and choose Copy as path.
    Open the Windows Command prompt.
    Type cd, press Space, right-click and select Paste, then press Enter.
    Type copy *. csv combined-csv-files. csv and Press Enter.

    • 0