Hi,
I have instantiated Excel Object in AE Peoplecode and have been successfully manipulating data cells in each worksheet tab of my workbook.
Now I want to copy a range of cells from one worksheet to another and paste its values on the other worksheet, though I dont encounter error but the
action does not execute. Also when I try to save the excel file it takes forever to save. Heres some part of my code
Appreciate your input.
get a cell range then;
&RangeSelected = &oCells.Copy;
&oWorkSheet1 = &oWorkApp.Worksheets("Sheet2");
&oCell = ObjectGetProperty(&oWorkSheet1, "Range", "A1");
&SheetSelected = &oWorkSheet1.Activate;
&oCell = ObjectGetProperty(&oCell, "PasteSpecial");
ObjectDoMethod(&WORKAPP, "Save", "C:\TEMP\TEST1.XLS");
Thanks a lot
Valkyrie