I am trying to see if any rows string partially contain " 4060 " Then assign it to variable projectTASK
The code I am using:
I extract data from a table put it to a local variable table called ExtractDataTable.
I then use a For Each Row in Table
The Data Table is ExtractDataTable
The Item is Table.
I have an if statement in the body that is Table.ToString().Contains(“4060”)
Then
Assign projectTASK (Variable )
Value Table.ToString()
Else Nothing
I stepped through and I see that the table is getting the correct info, but I think that UiPath checks if the entire string contains 4060. I only want it to check if any part of the string contains 4060 then get the entire string.