I’m using a table that takes a text (email body) and returns various elements, such as date.
So I have a date written in one column like this:
November 14, 2020
December 10, 2020
I use several formulas to get this info, such as FIND, MID and LEN. The formula in this first column is: MID({Email text},{Find Start Cut Off Date},{Length Cutoff Date})
Then in another column, I use DATETIME_PARSE to convert this info into a date. And for whatever reason, it returns a day before the actual date that’s in the first column. The output is:
13 November, 2020
9 December, 2020
What am I doing wrong?