in reply to Re: Waiting ...
in thread Waiting ...

Splitting out to .csv files is a good idea, but it does have some issues.  First, a .csv can only save out one sheet at a time; manually saving out 200+ sheets would be mind-numbingly painful (hopefully VB would/should be able to automate this task).  Second, the resulting 200+ files are coming close to the maximum number of open file handles a 32 bit Perl can handle (depending on how many derivative files are created it could be uncomfortably close).  The number of file handles becomes an issue because it sounds like the OP is doing some massive cross-referencing between sheets (meaning most, if not all, of the .csv files would need to be open).  Seconding a previous post, this file should have been entered into a database long ago...

Replies are listed 'Best First'.
Re^3: Waiting ...
by PerlingTheUK (Hermit) on Jun 01, 2005 at 21:49 UTC
    That is exactly what I did. All sheets had one of two distinctive formats and I read them and joined them in two csv files.
    Manually doing this however was not an option as this manual data processing is exactly what is so mind numbing and what I hate.

    Cheers,
    PerlingTheUK