I want to reverse this list but it seems it does not reverse it. any ideas??
Thank you
That is not a list. That is a data tree. A data tree is a list of lists. Reverse by itself will reverse the items in each list of a data tree but wont change the positions of the lists within the tree.
See the difference here and how to do it on the tree:
yep, so true!! thank you…