Hey guys,
Learning moment for me
Why doesn’t the indicated return statement in the image below break out of the “Find Item in List” block? I’ve checked it multiple times and it clearly goes ahead and iterates through the remaining items in the list before returning at the main return. There’s no help documentation for this one so I figured I’d ask.
Thanks!
Actually, now that I think about it, the “Find Item in List” block is returning the entire list item of the list that is searched (each item of which is also a list). My “Get property id of item” block doesn’t seem to be doing anything.
Hi @James_Hereford
That’s correct, the return in the Find block expects TRUE or FALSE value, and the it get TRUE it stops iterate the list and return the entire list item
Regards,
Vlad
Thanks Vlad. That makes sense!