in reply to Re: How to retreive data's from excel to perl ?
in thread How to retreive data's from excel to perl ?

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"; } }