Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
In the above way, I have to go by the row and column numbers. In case the column for first name changes, I need to change my script. That is why I am looking for a way to point to a cell using its column name/row name.use Win32::OLE::Const 'Microsoft Excel'; my $wks = $wkb->Worksheets(1); my $FirstName = $wks->Cells(18,3)->{'Value'};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: reading data from Excel sheet using column/row names
by NetWallah (Canon) on Apr 01, 2010 at 05:32 UTC | |
|
Re: reading data from Excel sheet using column/row names
by BrowserUk (Patriarch) on Apr 01, 2010 at 05:02 UTC | |
|
Re: reading data from Excel sheet using column/row names
by godsown (Novice) on Apr 01, 2010 at 04:45 UTC |