in reply to Inserting copied rows in Excel using Win32::OLE

What you want to use to copy and paste into excel is:
my $Workbook = $Excel->Workbooks->Open({Filename=>"test.xls"}); my $curSheet = $Workbook->Worksheets(1); $curSheet->Range("2:2")->{Value} = $curSheet->Range("1:1")->{Value +};


Hope that this helps.