Help for this page

Select Code to Download


  1. or download this
        #!/usr/bin/perl -w
    
        use strict;
    ...
    
        print $format->FmtString($cell, $workbook), "\n";
    
  2. or download this
        use strict;
        use Spreadsheet::ParseExcel::SaveParser;
        $oBook = 
    ...
        my $oWs = $oBook->AddWorksheet('TEST1');
        $oWs->AddCell(10, 1, 'New Cell');
        $oBook->SaveAs('iftest.xls');