Skip an item in the List Iterator

Is there a way to put any comment's mark at the beginning of any item on the list - so the List Iterator will igore this item?

I would like to temporary skip an item without taking it out of the list (so I won't remember to insert it back in later)

Hi Hila,

Unfortunately this is not possible by only using List Iterator, but it can be done fairly easily. If you add an If..Then action as the immediate child of the List Iterator, you can use the If .. Then to check for any of the items you want to skip, and only run the child actions if it is not one of those elements.

ie

List Iterator
   If .. Then ( %ItemValue% <> 'MySkippedItem' ... etc )
      Child 1
      Child 2
      Child 3

Regards,

Angus