Help for this page

Select Code to Download


  1. or download this
    # get a new workbook
    $book = $ex->Workbooks->Add;
    
  2. or download this
    $sheet = $book->Worksheets(1);
    
  3. or download this
    # save and exit
    $book->SaveAs( 'test.xls' );
    undef $book;
    undef $ex;