Google Sheets – Fix Date Format When Combining Cells with CONCATENATE

concatenatedateformulasgoogle sheets

I'm trying to figure out "how to" maintain the date format when I concatenate a date formatted cell with a nondate formatted cell.

Result: The Date Format Is Lost

initial attempt

Formulas Used

formulas used

Desired Result: I had to convert Date format to Text Only

desired result

I'm trying to figure out "how to" maintain the Date Format while combining two cell values. Any ideas?

Best Answer

You can do the formatting on the fly:

=text(B2,"m/d/yyyy")&C2

Google Sheets Help: TEXT()