Help for this page

Select Code to Download


  1. or download this
    my $xls = Spreadsheet::ParseExcel::Simple->read('spreadsheet.xls');
    foreach my $sheet ($xls->sheets) {
    ...
           my @data = $sheet->next_row;
       }
    }
    
  2. or download this
    my $ss = Spreadsheet::WriteExcel::Simple->new;
       $ss->write_bold_row(\@headings);
    ...
    print $ss->data;
          # or
          $ss->save("filename.xls");