May 20, 2019 07:47 AM
Hello,
I want to have a field that concatenates the Due Date field with the Description field.
It is showing up as this:
2019=05-31T00:00:00.000ZCafaro Service
My formula is:
CONCATENATE({DUE DATE},Description)
We do not have the time format selected in due date, so I’m not sure why it is generating this way.
We would prefer a simplified date be shown in Month/Day/Year and have that displayed in front of the project description.
Thank you!
May 20, 2019 08:06 AM
Hi @Julianne_Daltorio You need to use the DATETIME_FORMAT() function to get the date into the format that you need. Try this:
DATETIME_FORMAT({Due Date}, 'MM/DD/YYYY') & '-' & Description
(I’ve used the alternative &
rather than CONCATENATE()
)
JB
May 20, 2019 10:03 AM
This was perfect! Thank you so much Jonathan!