Help for this page

Select Code to Download


  1. or download this
    my $DataCount    = 0;
    while ( @Data = $ExcelQuery->fetchrow_array ) {    
    ...
        $DataCount ++;
        
    }
    
  2. or download this
    my $RowCount = 0;
    while (<@Data>){
    ...
         $AssetRecord = $ExcelColumns[$RowCount] => $Data[$RowCount];
         $RowCount ++;
    }