I am trying to convert multiple string fields to date fields.
The dates start as mm/dd/yyyy (e.g. 10/31/20 and 05/04/21).
I tried using a Multi Field tool and a regex_replace formula to re-arrange the date to yyyy-mm-dd for the selected fields using the following expression...
REGEX_Replace([_CurrentField_],"(\d{2})\/(\d{2})\/(\d{4})", "$3-$2-$1")As a string, it works. It outputs null if I try to re-arrange it and convert the output to a date. Is there a way to do this without using multiple Date Time tools?
| Date1 | Date2 | Date3 | Date4 | |
| 11/02/1387 | 06/05/1232 | 12/31/1931 | 01/01/2064 | |
| | | | | |