{Help} Time list arrangement

Hi everyone,

I am struggling how to sort my time list from early to current order. As the attached screen capture shown, the left side is the date that i have but they are not in the order of “from early to current”. I need the time list looks like the right one. Appriciate.

Time arrangement

Hi @Seanc9XFAH,

How’s this?

Hi @mzjensen,

Thank you so much. Your Scripts perfectly solved my problem.

1 Like

@Seanc9XFAH Similar approach via Python:

from datetime import datetime
IN[0].sort(key=lambda x: datetime.strptime(x,"%d/%m/%y"))
OUT = IN[0]
4 Likes