in reply to accessing data in a hash

Your example looks like a verbatim copy of the docs at Spreadsheet::ParseExcel so I would think it would work. But it looks like the file didn't open successfully. do this:
use Data::Dumper; print Dumper($oWkS); ### or if that's too much data print Dumper($oWkS->{Cells});

Replies are listed 'Best First'.
Re: Re: accessing data in a hash
by JSchmitz (Canon) on May 03, 2001 at 21:53 UTC
    Thanks! yeah the top of that is cut and paste from CPAN - The parser (the top part of the script) works fine it is my part that is not working per usual = ) thanks I will try that!