http://qs1969.pair.com?node_id=1057457


in reply to Re^6: Iterating Through Cell Blocks with Spreadsheet::Read
in thread Iterating Through Cell Blocks with Spreadsheet::Read

Anomalous, thanks for your response. Adding a line "print Dumper $sheet;" generates error:
print() on unopened filehandle Dumper at ./minitest.pl line 33.
References like:
my $sheet_count = $book->[0]{sheets};
before the loop work, but even though I have:
$sheet = $book->[$sheet_index] or next;
this does not seem to be doing the trick. I have tried many variations with no success. I had know autovivification as Perl magic. Knowing the proper term allows me to read about the full effects of the feature. Thanks for that. Adding:
use warnings; use strict;
up top makes no difference in the result. Thanks, Hammer.