You need to use a formula to format the date:
DATETIME_FORMAT({Estimate Start Date}, 'MMDDYY') & "-" & DATETIME_FORMAT({Estimated Completion Date}, 'MMDDYY')
I find using the &
operator to join strings to be easier to read than the Concatenate formula.
eta: Converted curly quotes to straight quotes. I originally typed the example on my phone where formatting was more difficult.
Here’s a copy-paste safe version of @kuovonne’s formula:
DATETIME_FORMAT({Estimate Start Date}, 'MMDDYY') &
"-" &
DATETIME_FORMAT({Estimated Completion Date}, 'MMDDYY')
Thank you both!! I have never used & and wasn’t sure where exactly to put the DATE_FORMAT on my concatenate.
I am trying to join these two that use Dates in the field. I know I need to use the DATE_FORMAT but when I put the formula together it returns an #ERROR code. What am I doing wrong?
DATETIME_FORMAT({Date PL NT}, 'L') & '-' & DATETIME_FORMAT({Date of PL Local Orders}, 'L')