I am trying to create an automation to download an excel file off a website; then I want the robot to use that same excel file to search each of our members and toggle a button if it’s not checked. (the lines in excel can vary from 100 lines to 8000 lines). How could I set that up? Should the bot download the file or set it as a variable after the download? Also, how could I have the automation check for how many lines are on the excel page and ensure it goes through each line every time?
1 Like
Hey @Primal
You can use the following approach as per your requirement:
- Download the excel file, rename it & save it in the pre-assigned destination.
- Read the same file as you already know the pre-specified destination. Save the output data table variable.
- Iterate through the data table variable for each member & toggle the button.
- To check the number of lines present, you can get the result using ‘dtName.Rows.Count’.
- If you want to check the status of each line every time, Either you can add a ‘Status’ column to the sheet right after reading it & updating the row in every iteration, or you can log the status as per.
Hope this helps.
Regards,
Arjun
2 Likes
Hello @Primal
Try this
- Use the Wait Download activity and use click activity in it (Clicking the download button).
- Assign variable for the Download file, like DownloadedExcel.
- Pass the variable to read range workbook like DownloadedExcel.Fullname and Output as DT Variable
- Use Log message to count the row by using
DT.Rows.Count.Tostring
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.