I am new to Uipath and tries to read and learn, but now I am stucked.
I have an array with several substring. First substring(0) does not contain any information I want so I want to start For Each at second string(1) and Loop to next and so on. I have managed to read all strings and build a data Table, but sinse the first string does not contain information I want it stops the execution. When testing the loop I used the Ignore button when it loops through string(0) so when it starts to read from string (1) it all goes fine.
Is there any way to exclude string(0) and go directly to string(1).
Fine
we can validate that for each element
like what if any of the element in the middle doesnt have any value
so in that case we can validate them like this
–use a for each activity and pass the arrray variable as input
–inside the loop use a IF condition like this NOT String.IsNullEmpty(item.ToString)
Only if the above condition passes it will get into THEN part where we can have our current sequence of activities to be performed