Search found 2 matches

by batchhelp1
10 Feb 2019 15:46
Forum: DOS Batch Forum
Topic: Merging CSVs with batch script but starting each on a NEW row
Replies: 4
Views: 3779

Re: Merging CSVs with batch script but starting each on a NEW row

OK, that makes sense. (I'm downloading the files from a site that provides end-of-day stock price data files...so i don't have any say in what format they provide them in...) Is there some simple way I can amend the batch file I'm using to insert a carriage return or line break after each CSV file i...
by batchhelp1
10 Feb 2019 12:47
Forum: DOS Batch Forum
Topic: Merging CSVs with batch script but starting each on a NEW row
Replies: 4
Views: 3779

Merging CSVs with batch script but starting each on a NEW row

I have 100 separate CSV files in a folder that I'm merging into a single CSV file with a simple .Bat batch file that I run from that folder with this simple line of code: copy /a *.csv concat.csv Each separate CSV file is in identical format with 25 columns (A:Y), though some have more rows than oth...