Datetime format confusion (looking for equivalent of python's datetime.strptime)
I'm sure this has been asked many times, but I did not find a good solution.I have a column (let's call it time_col) with a timestamp in the format 2024-06-28T13:47:03 Looking at the documentation I figured I should use Format, something like:Format(:time_col, "Format Pattern", "<YYYY><-><MM><-><DD><T><hh><:><mm><:><ss>" ) But this does not give any result.In python it would be:datestr = '2024-06-
...