Help for this page

Select Code to Download


  1. or download this
      @sheets = $xls->sheets;
    
  2. or download this
    for (1..5) { # skip first five rows
       $sheet->has_data or die "Can't get 5th row: Too few rows\n";
       $sheet->next_row;
    }
    my @data = $sheet->next_row;