in reply to Re: Parsing Excel Workbook
in thread Parsing Excel Workbook
my $xls = Spreadsheet::ParseExcel::Simple->read($excel); #$excel is a +filehandle. warn "read Excel spreadsheet"; #warn Dumper $xls; my @data; foreach my $sheet ($xls->sheets) { while ($sheet->has_data) { push @row, $sheet->next_row; } }
|
---|