in reply to Help with Excel::Table
I have a directory named "mydir" and a file in it named "test.xlsx". The following code works for me:
use warnings; use strict; use Excel::Table; use Log::Log4perl qw(:easy); use Data::Dumper; my $xs = Excel::Table->new(dir => 'mydir'); $xs->open('test.xlsx'); print Dumper($xs);
The "Dumper" code shows me the contents of my Excel file (but is quite verbose).
I find it hard to follow the module documentation. Good luck trying to figure out how to extract the data you need from your file.
|
|---|