Help for this page

Select Code to Download


  1. or download this
    my ( $col_min, $col_max ) = $worksheet->col_range();
    
  2. or download this
    for my $col ( $col_min .. $col_max ) {
    
       my $cell = $worksheet->get_cell( $row, $col );
       ...
    }