|
From: Anand on 5 May 2008 19:36 I am trying to read an excel file usign the writeexcel. Following is the code-snippet: my $workbook = Spreadsheet::WriteExcel->new('Temp.xls'); print "Cannot create Temp.xls: $!\n" if (not defined $workbook); foreach $worksheet ($workbook->sheets()) { print "Worksheet Name is: ".$worksheet->get_name()."\n"; } The file Temp.xls is already existing in the directory. I want to further modify the worksheets. However, the sheets() method itself is not working. What might be the reason? I'm using perl 5.8 Thanks, Anand.
|
Pages: 1 Prev: WriteExcel->sheets() fails to get the worksheets Next: maximum hash/array keys/values |