Dear All,
Now I just dev a UiPath to scraping data on website and all data I store in datatable but in details of data I would like to select only first 3 character in each row.
Can someone guide me how to do it.
Thanks in advance.
Thanakorn
Dear All,
Now I just dev a UiPath to scraping data on website and all data I store in datatable but in details of data I would like to select only first 3 character in each row.
Can someone guide me how to do it.
Thanks in advance.
Thanakorn
Hi,
Can you try the following logic?
CurrentRow(0) = CurrentRow(0).ToString.Substring(0,3)
Regards,
Thanks a million this is a solution for me.
Thanakorn