Help for this page

Select Code to Download


  1. or download this
    use Spreadsheet::WriteExcel
    my $workBook = Spreadsheet::WriteExcel -> new ( "report.xls" );
    
    ...
                     write_excel ( $workSheet );                 
           }
    }
    
  2. or download this
    sub create_excel {
            my $name = shift;
    
    ...
    
            return $worksheet;
    }