Hello!
I’m doing my nut in trying to collect info from 2 (formula) columns into one, with the right (date) formatting.
Here’s the sitch:
I have subscribers who can register for 1 month, or 3 month blocks. I want to show their renewal date in one column.
I’ve started with creating a “Month Start” field (the date their month-long registration started) and a “3 Month Start” field (the date their 3-month registration started).
Next I’ve made 2 DATEADD columns:
“Month End” adds 1 month to the “Month Start” date.
“3 Month End” adds 3 months to the “3 Month Start” date.
So far so good.
Then, I’ve created a new column called “Renew Date”. I want it to pull the dates from “Month End” and “3 Month End” (where they exist; some cells in each column are blank).
This works, to an extent, using CONCATENATE…
{Month End}&{3 Month End}
This pulls the info in, but it’s using that bastard format “2020-07-08T00:00:00.000Z”.
So I’ve tried to throw in the DATETIME_FORMAT:
DATETIME_FORMAT({Month End},‘DD MMMM YYYY’)
& DATETIME_FORMAT({3 Month End},‘DD MMMM YYYY’)
And it all goes wrong.
If I include DATETIME_FORMAT for just one, eg “3 Month Start”, it shows that correctly, but puts ERROR in all other cells.
If I put DATETIME_FORMAT for both fields, it shows all cells as ERROR.
Argh!
Where am I going wrong, and how can I fix it?!
Also very grateful for advice if I’m making any other part of this unnecessarily complicated! :grinning_face_with_big_eyes:
thanks all