How do I concatenate two columns when one is in date format?

L

LauraL

I am trying to combine two columns using =concatenate. One of them is a
column of dates. When I execute the formula the returned value changes my
date into a text number. How do i maintain the date value?
 
D

Dave O

Within the CONCATENATE() function, instead of referring to the date
cell alone, refer to it by nesting the TEXT() function. For instance:
if your date cell is A1 and you're concatenating it with cell B1, your
formula would look something like this:
=CONCATENATE(TEXT(A1,"mm/dd/yyyy"),B1)

You may need to change the arguments of the TEXT function to fit your
specific application.
 
B

Bob Phillips

=A1&TEXT(B1,"dd mmm yyyy")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Top