If all you need to do is extract raw data from an Excel sheet I find Spreadsheet::ParseExcel::Simple saves typing and is far easier to read. YMMV:
my $xls = Spreadsheet::ParseExcel::Simple->read( 'spreadsheet.xls' ); foreach my $sheet ($xls->sheets) { while ($sheet->has_data) { print join( ', ', $sheet->next_row ), "\n"; } }
In reply to Re^2: How to retreive data's from excel to perl ?
by adrianh
in thread How to retreive data's from excel to perl ?
by gube
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |