in reply to Spreadsheet::WriteExcel write failure
Maybe the problem is with addworksheet() (note spelling)?#!/usr/bin/perl use warnings; use strict; use Spreadsheet::WriteExcel; my $book = Spreadsheet::WriteExcel->new("perl.xls"); my $sheet = $book->addworksheet(); $sheet->write('A1', 'Hi Excel!');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Spreadsheet::WriteExcel write failure
by reneeb (Chaplain) on Jan 11, 2005 at 19:29 UTC | |
by trammell (Priest) on Jan 11, 2005 at 23:01 UTC |