Help for this page

Select Code to Download


  1. or download this
     
     #!/usr/bin/perl -w
    ...
       $sow++;
    }
    
  2. or download this
     my $row = 1;
    foreach my $data (@data) {
    ...
    
        $worksheet->write($row, 0, @$data[0]);
        $worksheet->write($row, 1, @$data[1]);
    
  3. or download this
    # Write the main headings for the worksheet AP
    $worksheet->freeze_panes(1); # Freeze the first row
    ...
    $worksheet->write('I1', 'Sleepy',     $heading);
    $worksheet->write('J1', 'Sneezy',     $heading);
    .......