Help for this page

Select Code to Download


  1. or download this
     $fileName = $_[0];
                     $fFnc = $_[1];
    
    ...
                                                              my $cell = $
    +sheet -> {Cells} [$row] [$col];
    // At this place it gives incorrect result
    }
    
  2. or download this
    if($fileName =~ /\.xls$/i )
                            {
                                    my $parser = Spreadsheet::ParseExcel->
    +new();
    ...
                                                                          
    +  my $cell = $worksheet->get_cell( $row, $col );
    // At this place it gives incorrect result while reading.
    }