Hello,
I have two columns with dates formatted like this: 01.02.20 (MM.dd.yy) with data type string. I need to convert them to MMddyyyy. Seems like Multi Field Formula would be the easiest way to do this but I can't figure it out. Any advice? Thanks!
Solved! Go to Solution.
Hi @KateC
You can do something like this. Just remove the "." inbetween.
Replace([_CurrentField_], ".", "")
Workflow:
Edit : Guess i missed out that year was needed in yyyy format 😅
Hope this helps : )
Hi @KateC
Here is how you can do it.
DateTimeFormat(DateTimeParse([_CurrentField_],'%m.%d.%y'),'%m%d%Y')
Let me know if this solution works for you.
Cheers!
Phil
Thanks, Maskell Rascal! That worked perfectly.