Help for this page

Select Code to Download


  1. or download this
    my $workbook = Spreadsheet::WriteExcel->new("result.xls");
    
    ...
        my $workSheet = $workbook->add_worksheet('PASS');
        excel_write ( $workSheet,@pageid_pass,@plot_pass );
    }
    
  2. or download this
    sub excel_write {
        my ( $worksheet,@pageid,@plotname ) = @_;
    ...
        $workSheet->write($row,$col,"PAGEID",$format);
        $row++;
    }