in reply to Re^2: Create Excel SpreadsheetS
in thread Create Excel SpreadsheetS

Thanks it now works. Any way I can get this on a web page where someone can click on a CGI/Perl link and it will show the Excel File?
use Spreadsheet::WriteExcel; my $workbook = Spreadsheet::WriteExcel->new("C:/myfile.xls"); $worksheet = $workbook->add_worksheet(); $worksheet->write('A1', "Hi Exclel!"); $worksheet = $workbook->add_worksheet(); $worksheet->write('A1', "Next spreadsheet");

Replies are listed 'Best First'.
Re^4: Create Excel SpreadsheetS
by jmcnamara (Monsignor) on Dec 29, 2006 at 09:13 UTC
    You could start with this program from the Spreadsheet::WriteExcel examples.

    --
    John.