I have a date column for ship dates but many times it will not contain a date but will show "ETA 05/26" when they anticipate the material will ship and what I am trying to do is parse this into 2 columns and then add "/2023" to the column and then convert to a date. I can parse the date and then add "/2023" but when I try to convert to a date it comes out 2023-01-26 and I don't know why it shows January instead of May, can someone look at point out where I went wrong?
Thanks,
Mike
Solved! Go to Solution.
@MikeFrancis1959 You can try the below formula
DateTimeParse(toString(DateTimeYear(DateTimeToday()))+Replace([Field1],'ETA',''),'%Y%m/%d')
Change your mm to MM in the DateTimeConverstion. mm is Minutes. MM is Months.
Thank you very much!
Mike
Thank you very much, you have helped me in the past and I keep learning so much with everyone's help!
Mike