Help for this page

Select Code to Download


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