Help for this page

Select Code to Download


  1. or download this
    $excel_table->parse_table("Sheet1", "Name") ;
    
  2. or download this
    my $hashref = $excel_table->get_table("ID");
    my %excel_hash = %{ $hashref };
    my %new_hash = map { $_ => $excel_hash{ $_ }->{'Name'} } keys %excel_h
    +ash;