i’m having problem to get even numbers from index
I mean…
I want to have the : list of numbers from (get.item.a.tindex_level4)
and then pick odd numbers from the index
You need to get all of the index numbers first. Then you can filter out the odd ones and use them with GetItemAtIndex. A shortcut would actually be to get the list count (c) for each sublist and then create a sequence from 1 to c by 2, effectively getting you all the odd indices in that sublist.