Please Help
I have two excel “Data Grafik” and excel “List account”
How to create a UiPath flow if I want to copy data in excel “Data Grafik” in the “Account” and “AM Name” columns obtained from excel “List Account”? Data Grafik.xlsx (8.8 KB) List Account.xlsx (10.3 KB)
Also refer these steps if you wanna understand the zip file and you want to perform by yourself:
To achieve this in UiPath, you can create a flow using activities like “Read Range” to read data from the “List Account” Excel file and “Write Cell” to write data into the “Data Grafik” Excel file. Here’s a step-by-step guide:
Use the “Read Range” activity to read the data from the “List Account” Excel file and store it in a DataTable variable.
Use a For Each Row activity to iterate through each row of the DataTable obtained from “List Account”.
Inside the For Each Row activity, use the “Get Row Item” activity to retrieve the values from the “Account” and “AM Name” columns.
Use the “Write Cell” activity to write the retrieved values into the corresponding columns in the “Data Grafik” Excel file.
Repeat steps 3 and 4 for each row of data in the “List Account” Excel file.
Finally, save the changes made to the “Data Grafik” Excel file.
By following these steps, you can effectively copy data from the “List Account” Excel file into the “Data Grafik” Excel file in the specified columns.