I have records coming in from multiple combined files. In one field, some of the dates have leading zeroes where month/day <10, but others do not:
example:
13.04.2023
9.8.2022
5.7.2022
28.02.2022
How can I standardise these to all be dd-mm-yyyy with leading zeros where applicable and covert to date format?
example desired output:
13.04.2023
09.08.2022
05.07.2022
28.02.2022
