Search found 4 matches

by Vinez
Thu Jul 03, 2008 12:00 pm
Forum: General
Topic: Merge Multiple Text files into One Text File
Replies: 6
Views: 775

Merge Multiple Text files into One Text File

Thank you, I will try that.
by Vinez
Wed Jul 02, 2008 8:47 pm
Forum: General
Topic: Merge Multiple Text files into One Text File
Replies: 6
Views: 775

FYI

I actually went to expert exchange and received this answer to create a .bat file @echo off cls set file1=BOAHeader.txt set file2=BOADetails.txt set file3=BOATrailer.txt set dest=BOAPPOutput.txt type %file1% > %dest% type %file2% >> %dest% type %file3% >> %dest% I did this earlier. However, thanks ...
by Vinez
Wed Jul 02, 2008 8:41 pm
Forum: General
Topic: Merge Multiple Text files into One Text File
Replies: 6
Views: 775

Thanks

Thank you Bob. I was able to do the batch file and it worked.
by Vinez
Wed Jul 02, 2008 1:48 pm
Forum: General
Topic: Merge Multiple Text files into One Text File
Replies: 6
Views: 775

Merge Multiple Text files into One Text File

Does anyone know if it is possible to automate the process of merging three text files into one textfile each week? This will be a recurring process. For example, I need to submit a Positive Pay reconciliation to the bank each week in one text file. Currently I have 3 separate text files that ...