Help for this page

Select Code to Download


  1. or download this
    use Win32::OLE;
    use Win32::OLE::Const 'Microsoft Excel';
    ...
        Destination => $worksheet->Range('A1:B17'),
        Type        => xlFillDefault,
    });
    
  2. or download this
    my $ws2 = $workbook->Sheets('SheetName');
    $ws2->...