is there a way to remove this firrst data? they are inside this table io_dt_transactionPL
Hi @shanti_18
You can use Remove datarow activity. if you want to remove the first row, for the row index property of this activity, provide the value as 0 as 0 refers to the first row of the datatable.
https://docs.uipath.com/activities/other/latest/workflow/remove-data-row
I hope it helps!!
Hi @shanti_18
Use the remove data row activity to remove the first row.
In the Datatable field pass the datatable variable.
In row Index field give the value 0. Then it will remove the first row.
Hope it helps!!
like this sir?
Yes absolutely @shanti_18
I hope you got the Solution.
I have already tried this its working.
If you got the solution Make mark it as solution which help for others.
Happy Automation!!
not working on my end
Have you passed the datatable variable in the Datatable field.
If 0 not works try with 1.
If it not works try the below syntex
yourDataTable.Rows.RemoveAt(0)
Hope you understand!!
Try this:
YourDT = YourDT.AsEnumerable().Skip(1).CopyToDataTable
didnt work on my end
Did it throw any error or simply it didn’t perform.
Could you please confirm io_dt_ argument is datatable datatype or not.
Show the argument panel once.
didnt perform sir, what to do?
Use Write range workbook activity after remove data row then check whether the data is printed or not
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.