in reply to Re: rowspan vals in Excel SS are not interpreted by ParseExcel::Simple
in thread rowspan vals in Excel SS are not interpreted by ParseExcel::Simple
and all of the vals I propagated in are missing.my @row=$page->next_row;
Yet if I inspect the cell Val at the row and col, they are all correct. So I had to manually push values into the array:
Sure didn't expect that! * * * Followup- not sure why I was seeing that- but now everything is behaving without that step.. YAY thanks guys you were all a great help.for ( my $c=0; $c<=$maxCol; $c++ ) { next if $row[$c] =~ /./; $row[$c]=$page->{sheet}->[$row]->[$c]->{Val}; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: rowspan vals in Excel SS are not interpreted by ParseExcel::Simple
by FreeBeerReekingMonk (Deacon) on Feb 09, 2017 at 20:38 UTC |