You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Spreadsheet::WriteExcel
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.
jmcnamara
unread,
May 5, 2008, 7:50:54 PM5/5/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Spreadsheet::WriteExcel
On May 6, 12:35 am, Anand <anand.acha...@gmail.com> wrote:
> I am trying to read an excel file usign the writeexcel.
Hi,
You are not off to a good start.
Spreadsheet::WriteExcel is a module for writing Excel files not
reading them. For that you need the Spreadsheet::ParseExcel module
(http://search.cpan.org/~szabgab/Spreadsheet-ParseExcel/) or to modify
an Excel file see the following: