I have a script that works perfectly fine with .xls file but the same file when in xlsx doesn't work with my script.
I use
Spreadsheet::ParseXLSX(https://metacpan.org/pod/Spreadsheet::ParseXLSX) to parse the .xlsx file.
It works fine until getting the row and col range but doesn't work on get_cell or value of the cell.
my @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;
Sorry forgot to add the error message
$VAR1 = [
{},
{
'' => ''
},
{
'' => ''
},
{
'' => ''
},
{
Is there any difference between ParseExcel and ParseXLSX? any suggestions?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.