in reply to Re^3: Scan cells in Excel active worksheet
in thread Scan cells in Excel active worksheet
Many thanks huck for the answer, which works fine for .xls files with the code:
my $FileName = "Excel Test File 1.xls";
my $parser = Spreadsheet::ParseExcel->new();
my $workbook = $parser->parse($FileName);
my $Res1=get_active_sheet($workbook);
But I have no idea how to get it to work with xlsx files, which, currently fails if I try the following:
my $FileName = "Excel Test File 1A.xlsx";
my $parser = Spreadsheet::ParseXLSX->new();
my $workbook = $parser->parse($FileName);
my $Res1=get_active_sheet($workbook);
gauss76
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Scan cells in Excel active worksheet
by SuicideJunkie (Vicar) on Apr 06, 2017 at 13:47 UTC | |
by gauss76 (Scribe) on Apr 07, 2017 at 08:29 UTC |