Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Sorry forgot to add the error messagemy @name; my @details = (); for my $row(0 ..$row_max) { my $ligand_details = {}; for my $col (@required_cols) { warn Dumper($worksheet); my $cell = $worksheet->get_cell($row,$col); warn $cell; my $value = $cell ? $cell->val :''; if($row == 0 ) { $name[$col] = $value; } else { $ligand_details->{$name[$col]} = $value; } } push @details , $ligand_details if (defined $row); } return \@details;
Is there any difference between ParseExcel and ParseXLSX? any suggestions?$VAR1 = [ {}, { '' => '' }, { '' => '' }, { '' => '' }, {
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Spreadsheet::ParseXLSX or Spreadsheet::ParseExcel doesn't work with .xlsx
by Tux (Canon) on Feb 03, 2015 at 11:59 UTC | |
by farahk22 (Initiate) on Oct 20, 2020 at 02:25 UTC | |
by Tux (Canon) on Oct 20, 2020 at 07:41 UTC | |
by farahk22 (Initiate) on Oct 23, 2020 at 08:34 UTC | |
|
Re: Spreadsheet::ParseXLSX or Spreadsheet::ParseExcel doesn't work with .xlsx
by roboticus (Chancellor) on Feb 03, 2015 at 13:13 UTC | |
|
Re: Spreadsheet::ParseXLSX or Spreadsheet::ParseExcel doesn't work with .xlsx
by poj (Abbot) on Feb 03, 2015 at 11:26 UTC |