IO have a datagrid which contains, among other data, policy number and policy type. The policy number may exist several times in the grid but with different policy type status. I need to locate the policy number where the policy type = “Policy” (of whicht here will be only one occurrence). Is this possible?
Attached is the data grid I am reading from. So, foremost, it looks for the policy number using the find text activity. Now I also need to be able to make sure that the policy status is set to “Policy”. See the highlighted row in the attached image. I then need to select that row and send a right-click.
Hi @darrens - I think you need to follow @Mr_Meeseeks approach in here. Extract the DataTable from Extract Structured Data activity let say dt1 is the output and then apply the filter.
dt1.Select(“[policy number]=‘0001234’ and [policy type]=‘Policy’”) .CopyToDataTable(). It will provide you the whole details of the row ad you can fetch the data from data row accordingly.