Robust date conversion from string to DateTime

Y-M-D date format is just the default. You can parse a DMY date format as explained in the docs (and I suppose to get out in same format too somehow):

julia> using Dates
julia> Date("24/9/2020", dateformat"d/m/y")
2020-09-24
1 Like