Hi Guys,
I’m new in Uipath and I have this problem:
I have one column with 150000 rows.
I’m gonna need to split in groups of 2000 to process them.
My idea has to get first 2000 and after process, delete them and get the next 2000, and so on… but I can’t do it…
Can someone help me, please??
Best Regards,
Luís
Srini84
(Srinivas Kadamati)
July 16, 2021, 12:08pm
2
@Luis_Clara
Welcome to forums
Check below for your reference
This will take first 2000 rows and copy to dt datatable
As well as you can keep a list variable and make dt.AsEnumerable.Take(2000).ToList
Hope this may help you
Thanks
Thanks for the reply @Srini84
It’s works very well to this first part.
But now how I can delete that rows and get the next 2000?
I’m gonna need some query with linq or there is an activity?
Srini84
(Srinivas Kadamati)
July 16, 2021, 12:18pm
4
@Luis_Clara
You can use as below
dt.AsEnumerable.Skip(2000).ToList
This will skip the first 2000 rows
Hope this may help you
Thanks
I’m think I’m getting your point, but for some reason something still doesn’t work…
i’m gonna need to loop this right?
Can you check my idea if it’s correct
Main - Test.xaml (10.7 KB)
project.json (1.4 KB)
Srini84
(Srinivas Kadamati)
July 16, 2021, 12:48pm
6
@Luis_Clara
Can you add project.json file also to view your file without any issue
Thanks
of course, added with main file
Hi @Luis_Clara
Please find the attached, I have just did for 2 rows of a data table and you can change accordingly
I have used do while loop and it will loop till you have data in the data table.
Please try and let me know if you need any changes
SkipFewLinesinDT.xaml (9.4 KB)
Hi @Luis_Clara
Updated your xaml file as well, Please look in to it and let me know if your requirement is met or not, and also if you need any changes
Main - Test.xaml (12.6 KB)
Hope this helps you
Thanks
It’s working perfectly now I have done some adjusts but it’s “alive” eheh
thanks a lot @vinithareddyk123 and @Srini84
1 Like
system
(system)
Closed
July 19, 2021, 1:35pm
11
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.