Hi all,
I have a string field that I would like to turn into consistent date values but all of the formatting is different:
| What I Have: | What I Want: |
| Aug 8, 2024 | 08/08/2024 |
| 8/14/2024 | 08/14/2024 |
| Jul 15, 2024 | 07/15/2024 |
| June 3, 2024 | 06/03/2024 |
| 15/08/2024 | 08/15/2024 |
I think the last one in the table may be more difficult if it were, for example, 07/08/2024 (meant to be August 7th) but if the rest of the formats were fixed I could live with the difficulty of regional formatting differences.
I have tried to use regex but I can't quite figure it out and I would like to avoid "IF Contains([What I Have:], Jun) THEN '06'..." if at all possible.
Thanks!
Avery