Example: copying from Excel to Word
foreach my $org ( sort keys (%orgs)) {
$pt->PivotFields("Organisation")->{CurrentPage} = $org;
$pt->RowRange->Select;
$ex->Selection->Copy;
$wd->Selection->PasteExcelTable({LinkedToExcel => False,
WordFormatting => False, RTF => False});
$wd->Selection->InsertCaption({Label => "Table",
TitleAutoText =>"", Title =>"",
Position => wdCaptionPositionBelow});
$wd->Selection->TypeText(":");
$wd->Selection->Font->{Bold} = False;
$wd->Selection->TypeText(" $orgs{$org}");
$wd->Selection->TypeParagraph;
}