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

lol mah name be page 2

Replies are listed 'Best First'.
Re^3: Create Excel SpreadsheetS
by Anonymous Monk on Dec 29, 2006 at 01:03 UTC
    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");
      You could start with this program from the Spreadsheet::WriteExcel examples.

      --
      John.