Is there a way to merge multiple CSV files to get all the rows in the same txt file? Thanks! Tom
T Tom Jul 7, 2003 #1 Is there a way to merge multiple CSV files to get all the rows in the same txt file? Thanks! Tom
A Allen Browne Jul 7, 2003 #2 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.
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.