Create new list with the greatest values in every sublist

I ran into this issue that I need only the greatest value of every sublist to be listed.

You have many options. You can either sort like you have and take the last item in the list or you could use MaximumItem to return the largest value in the list.

1 Like