in reply to Reading XLS file using Perl
You need to study the documentation. There are examples how to use the module properly. For example:
my $parser = Spreadsheet::ParseExcel->new(); my $workbook = $parser->parse('Book1.xls');
and not
my $workbook = Spreadsheet::ParseExcel->new($filename);
|
|---|