in reply to Re: Scripting data extraction from excel files in a directory.
in thread Scripting data extraction from excel files in a directory.
Why are you using the eval statements, and why are you using the string form of the eval statements when calling Excel methods? In my experience, the direct way works just as well and looks far less ugly:
... $rowval = $ex->Workbooks(1)->Worksheets('Versions')->Cells($rowcounter +,1)->{Value} ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Scripting data extraction from excel files in a directory.
by Tabari (Monk) on Jul 10, 2007 at 13:47 UTC | |
by Corion (Patriarch) on Jul 10, 2007 at 13:54 UTC |