@PeterFromDenver I have the same issue @harignz so I can answer your questions.
The text file is 1 line per item. And in terms of size, there's ~ 250-500 lines per file.
A couple of the key elements that need to be done are:
--- Convert file from .txt to .csv
--- The first row does not contain the headers. As in @harignz's file, the headers are a few rows down... his headers are: St, Supp, Paper, Width, etc.
--- The headers (and all other text) are not tab delimited.. there's just spacing in-between (some times 1 space, some times 5 spaces, etc.)
--- Some rows need to be ignored. For example, there's a few page title rows at the top.. and also rows with dashed lines (------------), and also some 'total' rows (e.g. rows that contain 'Width Totals', 'Avg_days_in_stock', etc.)
So what we'd be looking for in the final .csv would be something like the below. The first line has the headers and next row is the data.
St Supp Paper Width Order etc.
41 PMTES 100M 1900 230204 etc.
Thanks. --- Philip