Hello,
there's a module called Spreadsheet::Wr iteExcel. It allows me to create
a new worksheet and edit its cells:
my $workbook = Spreadsheet::Wr iteExcel->new('my.xls' );
my $worksheet = $workbook->addworksheet() ;
$worksheet -> write('A2', 222);
But how can I put some values into the cells of an existing worksheet?
Thanks for any advice.
...:: fabio
there's a module called Spreadsheet::Wr iteExcel. It allows me to create
a new worksheet and edit its cells:
my $workbook = Spreadsheet::Wr iteExcel->new('my.xls' );
my $worksheet = $workbook->addworksheet() ;
$worksheet -> write('A2', 222);
But how can I put some values into the cells of an existing worksheet?
Thanks for any advice.
...:: fabio
Comment