Help for this page

Select Code to Download


  1. or download this
    sub Entry( $ $ $ $ ) {
        my ( $row, $slno, $testid, $status ) = @_;
    ...
        $worksheet->write( "B$row", $testid );
        $worksheet->write( "C$row", $status );
    }
    
  2. or download this
      # skip header row on Excel Spreadsheet
      my @entries = (
    ...
    
          Entries( $i+2, $slno, $testid, $status );
      }