We have a giant text file that is produced weekly by a computer. This text file contains all of our financial information up to that point in time.
This text file is ~110,000 lines long, and gets bigger with more contracts, etc. So it isnt possible to just import all of the data at once and then work with it due to the issue of excel capping around 62k lines (addressing I guess).
The text file is currently turned into 13 separate reports, by hand, on a weekly basis (not all of the file is used). The person that normally does this finds the start of the pertinant data by a label. The label is a single line in the text file that has a name, which becomes the name of the excel file. There would also be something to mark the end of the report, but I still need to figure those out on an individual basis.
So what I need to do in VBA is:
1. Open a text file and read it line by line
2. Create new excel files and write to them
Bookmarks