I have a column called Trip_Start, which is a V_String and coming from an Excel imported file. The values are not well formatted, the are either
2020-09-28 (correct)
or
28-Sep-2020 (wrong).
I was thinking about the formula tool and decide via regex_match whether there is a letter (-> parse) or no letter (-> just take the original value)

However as you can see on the preview cell, the regex is not signalling any hit and therefore always showing the else part of the statement.
Just to make sure datetimeparse is working as intended, here a formula without previous regex_match.

Any ideas?