views:

413

answers:

1

I am attempting the following formula:

=concatenate(A1, " ", B1, " - ", C1)

Where column A is text, B and C are dates. The concatenate function returns the numerical value of the date, rather than the text value. How do I fix this?

+2  A: 

You can use TEXT

=CONCATENATE(A1," ",TEXT(B1,"dd mmm yyyy")," - ",TEXT(C1,"dd/mm/yyyy"))
Remou
Awesome! I was playing with that, but I was missing the "dd/mm/yyyy"
NickSentowski