Hi everyone.
I have a list of IDs in an Excel file, and I need to record the communication status for each ID.
The communication status will be either “OK” or “NG.”
I’m unsure which activity should I use so that the automation can accurately capture and record the communication status for each ID.
Thank you in advance.
@Aakash_Sharma4,
Use Table Extraction to get ID and Communication Status columns.
Thanks,
Ashok
Thank you for replying.
I update different IDs in Excel on a daily basis, so I want UiPath to pick up the IDs from Excel and paste the status back into Excel.
@Aakash_Sharma4,
Follow this approach.
- Extract Table extraction data with Status from web application.
- Read Id’s from excel
- Iterate through Id from excel
- Use this LINQ to get status of the ID being iterated.
dtStatus = tableExtractionDataTable.Select("ID=" + currentIDVariable).CopyToDataTable
statusVariable = dtStatus .Rows(0)("Status").ToString
- Write this status back to excel one by one or you can update it into a Datatable and then write it at once.
Thanks,
Ashok
Sorry for the late reply. I practice UiPath in my free time.
The IDs I’m searching for are on different websites. If I use table extraction, it will only capture the IDs and statuses from the specific page I provide for the extraction activity, and I won’t be able to get data from multiple websites. Correct me if I’m wrong.
Here are the steps I’ve taken so far:
- I pick up the link from Excel.
- I input the login credentials.
- I retrieve the ID from Excel and search for it on the website.
Now, I just need to obtain the communication status. Kindly advice.