You are almost there. Use Output Data Table activity to output your entire Data Table to a string. Then use your mentioned .Contains method with that string to do the check.
If the loop is too old please create a new post for your query.
For your question there are multiple ways to check if a string value exists in datatable,
using select statement: if you know the column name you can use dt.select(“[ColName] = '”+stringValue+“'”), this will give you array of data rows and you can convert back to table using .copytodatatable in the same select query.
if you don’t know the column then you can use look up range activity: give the string input and then sheetname where you need to search and output will be the cell address of the first occurance, if there is no string present in the datatable then the output will be null.
Hi could you also help in a similar task ,I have extracted from structured text from a web browser containing various tasks in form of a data table. I would like to find all those tasks which contain the word Onboarding and then use the click activity to click on those links and click on another button post that.So basically what I want is the bot to extract all text by data scraping, select those text where the word onboarding is there, and then post that click on those links one by one.
Hi nlee, I am currently at the orchestrator training, and I don’t think I will be able to access this part before completing the above, is there any videos or workflow you could share executing the same process.