in reply to Re: Perl and Excel 10
in thread Perl and Excel 10

That's a possibility I didn't consider, but it could very well be the problem. If so, it can be solved by changing the sheet assignment to:my $sht = $wb->Sheets(1);

Regards,

John Davies

Replies are listed 'Best First'.
Re^3: Perl and Excel 10
by Anonymous Monk on Jan 31, 2011 at 20:47 UTC
    Perl only worked when I used the suggestion of using
    $sht = $wb->Sheets(1);
    This was on a PC where a Spanish version of Windows is being used.
    Therefore many thanks to both contributors.
    I suspect I would have spent many hours trying to figure this one out by myself!