Hi @Jess_Harlee - when you concatenate the date with something else you turn it into a string and the default format is the full YYYY-MM-DD HH:MM:SS:000Z. You need to format the DATE field using DATETIME_FORMAT()
'Some text ' & DATETIME_FORMAT(Date, 'MM-DD-YYYY')
JB