Current Studio Version : Enterprise Edition 19.4.4
Current Package Version : UiPath.Excel.Activities 2.7.2
Copy Paste Range Copy Item Selected : Value, NumberFormat, CellFormat
Using them produces an error.
Copy Paste Range : it’s work but Write Trash Value (Malfunction)
Copy Sheet : Exception Ouccred, same file copy sheet or another file copy sheet is same Error
No, all is fine. But based on that seems that workflow is working fine. It copied first sheet to the second. And re-copy source range like it should. I don’t see any problem here.
Currently, I do bypass Implements, Now, It’s Okay,
But so uncomfortable…
I want available copy paste range on same sheet
(Maybe fixed update on recent future?)
I seem to have a bit related issue so replying here. If I try to Copy Paste Range a rather large Range (34980 rows, columns A-H to be exact…) UIPath does the first copy/paste just fine but after that it simply freezes, no error, execution seems to continue but nothing happens after several minutes of waiting (it should continue with another copy paste of about similar size to different sheet for what it’s worth). Memory and CPU are not maxed out. If I activate the Excel window there’s defenately something going on (the cursor turning to blue circle all the time, if I click anywhere it results to [HRESULT: 0x800AC472] (Excel application scope : Exception from HRESULT: 0x800AC472)].
Is there some known upper limit to copied rows if I try to split the mass before copy/paste…?
Well, amazingly this VBA oneliner does the trick without hickups
Sub CopyPasteRange(sourceRange, targetWS, targetRangeStart)
Worksheets(“Sheet1”).Range(sourceRange).Copy _
Destination:=Worksheets(targetWS).Range(targetRangeStart)
End Sub