Help for this page

Select Code to Download


  1. or download this
    my @array= ($slno, $testid, $status);
    $array_ref  = \@array;
    $worksheet->write_row($row, $col, $array_ref);
    
  2. or download this
    sub Entry(@)
    { 
    ...
    $array_ref  = \@array;
    $worksheet->write_row($row, $col, $array_ref);
    }