This is my class assignment
I have a problem
How to copy column “Status = unregistered” in book2.xlsx to book1.xlsx
Can someone help me, pls?
Welcome to the UIpath Community.
-
use Read Range Activity to read data from book2.xlsx file and will give you output as dataTable say ‘DT’
-
In Assign, newDT = DT.Select(“Status = ‘unregistered’”).CopyToDataTable
-
Then use Append Range Activity and pass the “newDT” to append data to book1.xlsx file.
1 Like
Assign newdt=dt.Select(“[status]=‘unregistered’”). copy todatatable ()
Use write range of dt to book1
Thanks
Ashwin.S
1 Like
thanks guys. IT WORKS NOW :DDD THANKSSSSSS
1 Like
thanks guys. IT WORKS NOW :DDD THANKSSSS
Could you please close this thread by marking my above post as solution.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.
