i am extracting client data from web.
I extract one client at a time, so data goes to excel.
I loop the sequence, but my issue is:
The extracted data, that I sort and manipulate - how do i paste in new sheet next to, or rather below, the last pasted info?
I have more than one line for each client, and might not be similar lines for each client.
So for example i have three clients A,B,C
I need data like this
A, Car no1, salary
B, Car no1, salary
B, Car no2, salary
C, Car no1, salary
When I extract I get to the point where i have this:
B, Car no1, salary
B, Car no2, salary
If you want each customer data in each sheet you can use Shift+F11 to insert new sheet in a excel after every Customers data or you can use the send hot key’s CTRL+SHIFT+Down and Down For pasting each customer data without blank line. if you wank one blank line in between you can add another Down.
@Jan_Brian_Despi, As I am new to UIPath, I will check with excel scope and will replay soon.
The issue was actually not in excel - as I thought.
The issue was, that Uipath kept adding data to the Datatable - so when excel pasted it kept pasting more and more info, and the same info every time (including the new info).
Solution was to empty datatable before adding new info.