in reply to Re: Trying to use Win32::OLE PasteExcelTable method
in thread Trying to use Win32::OLE PasteExcelTable method
I think either $range->PasteExcelTable( 0, 0, 0 );
or $range->PasteExcelTable({ LinkedToExcel => 0, WordFormatting => 0, RTF => 0, }); aka
my %args = ( qw/ LinkedToExcel 0 WordFormatting 0 RTF 0 / ); $range->PasteExcelTable( \%args );
But I don't have ole/word/excel/table to test
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Trying to use Win32::OLE PasteExcelTable method
by aaronbaum2000 (Initiate) on Oct 02, 2014 at 14:40 UTC | |
by Anonymous Monk on Oct 02, 2014 at 23:25 UTC |