Remove particular index items from a list

my list contains 22 items and i want to remove items of index 1,19,20,21 and 22. how do i do it using only one time remove list item block?

You would need to iterate over the list (preferably using for each number)

i am using this method :sweat_smile:
remove list items blocks 4 times :grin: :grin:

Since item numbers in a list collapse after each removal, you would have to remove items in descending order of index, 1 last.

1 Like

Like so:

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.