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



