Help for this page

Select Code to Download


  1. or download this
    map {
       my $range = 'A'.$count.':B'.$count;
       $count++;
       $sheet->Range($range)->{'Value'} = $_;
    } @$retrieve_ref;
    
  2. or download this
    for ( @$retrieve_ref ) {
       my $range = 'A'.$count.':B'.$count;
       $count++;
       $sheet->Range($range)->{'Value'} = $_;
    }