I have a data source with a "timestamp" column that reflects the time as follows:
2022-08-17T19:20:41.218+0200
My question is if there is any direct way, that does not need a loop that goes through all the files (there are tens of thousands a day), to transform that date format into a more friendly one of the style:
2022-08-17 19:20
I have tried the following, among other things, with no positive results:
Rango.Columns("F").NumberFormat = "mm/dd/yyyy HH:mm"
Rango.Columns("F").NumberFormat = "mm/dd/yyyy hh:nn"
Thanks for the help.