Bug in UiPath.Excel.Activities.Business.DeleteRowsX

When trying to delete more than one row, using range, integer <> string error occurs!
Just doesn’t make sense as the input to this range is indeed integers like 1-4 etc.


@Kiran-Kishore you are directly passing number so UiPath is taking it as math operation not string range.
make range to string example: “1:4” in this format string error will be solved.

@Kiran-Kishore

At position property require string input. The placeholder showing you how the position value to pass.

We normally pass the values as per property datatypes

So pass it like "5-7" and you should be good. Cheers✌️

1 Like

Thank you, all.
The example in the box or the tool tip should have shown this IMO!

1 Like

@Kiran-Kishore

Tooltip you can observe in other activities also if always without quotes. So it’s standard across all activities I would say.

Cheers!

If no more questions, kindly close the thread by marking my answer as solution so it will be helpful to other members as well.