|
I am trying to parse excel 2007 file using Spreadsheet-ParseExcel module but not able to parse
my $excel = Spreadsheet::ParseExcel::Workbook->Parse($fname);
here I am able to get the object of Spreadsheet::ParseExcel::Workbook
@{$excel->{Worksheet}}
doesen't returning any worksheet while actual excel file contains a worksheet.
can anyone tell me what is the issue and how I can resolve it.
|